mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-22 02:11:44 +03:00
00c324fa4e
- Represents that logging is shared across all parts of Ghost at present
* moved core/server/lib/common/logging to core/shared/logging
* updated logging path for generic imports
* updated migration and schema imports of logging
* updated tests and index logging import
* 🔥 removed logging from common module
* fixed tests
24 lines
867 B
JavaScript
24 lines
867 B
JavaScript
const debug = require('ghost-ignition').debug('services:apps');
|
|
const Promise = require('bluebird');
|
|
const {i18n} = require('../../../server/lib/common');
|
|
const logging = require('../../../shared/logging');
|
|
const errors = require('@tryghost/errors');
|
|
const config = require('../../../shared/config');
|
|
const loader = require('./loader');
|
|
|
|
module.exports = {
|
|
init: function () {
|
|
debug('init begin');
|
|
const appsToLoad = config.get('apps:internal');
|
|
|
|
return Promise.map(appsToLoad, appName => loader.activateAppByName(appName))
|
|
.catch(function (err) {
|
|
logging.error(new errors.GhostError({
|
|
err: err,
|
|
context: i18n.t('errors.apps.appWillNotBeLoaded.error'),
|
|
help: i18n.t('errors.apps.appWillNotBeLoaded.help')
|
|
}));
|
|
});
|
|
}
|
|
};
|