0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-03 23:00:14 -05:00

Re-export logging in ./core/shared/logging

no issue
Fixes commit caea330647 when running on Ghost (Pro), this is a temporary patch that will be removed when there are no references to the logging module.
This commit is contained in:
Sam Lord 2021-06-17 09:10:24 +01:00
parent d010ab4490
commit 588bbcab84

7
core/shared/logging.js Normal file
View file

@ -0,0 +1,7 @@
const logging = require('@tryghost/logging');
/**
* TODO: Remove this file once Ghost (Pro) no longer relies on ./core/shared/logging.js
* This re-exports the same interface that the original logging module provided
*/
module.exports = logging;