mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 13:54:35 +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
7 lines
223 B
JavaScript
7 lines
223 B
JavaScript
const path = require('path');
|
|
const logging = require('@tryghost/logging');
|
|
const I18n = require('./i18n');
|
|
|
|
module.exports = new I18n({logging, basePath: path.join(__dirname, 'translations')});
|
|
module.exports.I18n = I18n;
|