mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-20 17:32:15 +03:00
caea330647
no issue Logging is now controlled by a logginrc.js file in the root of the project - and now we can just import @tryghost/logging everywhere
8 lines
262 B
JavaScript
8 lines
262 B
JavaScript
const config = require('../../../../shared/config');
|
|
const logging = require('@tryghost/logging');
|
|
|
|
const ThemeI18n = require('./i18n');
|
|
|
|
module.exports = new ThemeI18n({logging, basePath: config.getContentPath('themes')});
|
|
module.exports.ThemeI18n = ThemeI18n;
|