From 588bbcab8483f45364ff091350610d288b727dc3 Mon Sep 17 00:00:00 2001 From: Sam Lord Date: Thu, 17 Jun 2021 09:10:24 +0100 Subject: [PATCH] Re-export logging in ./core/shared/logging no issue Fixes commit caea330647b70c300428764de52a05c873ee5652 when running on Ghost (Pro), this is a temporary patch that will be removed when there are no references to the logging module. --- core/shared/logging.js | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 core/shared/logging.js diff --git a/core/shared/logging.js b/core/shared/logging.js new file mode 100644 index 0000000000..ba746d5270 --- /dev/null +++ b/core/shared/logging.js @@ -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; \ No newline at end of file