From c2b0cbe07b9e51e3dd8e0b06d3b8b2c763e3b546 Mon Sep 17 00:00:00 2001 From: Sam Lord Date: Thu, 25 Feb 2021 15:50:58 +0000 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Added=20ElasticSearch=20logging=20w?= =?UTF-8?q?hen=20available?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit no issue Ghost Ignition 4.4.4 includes ElasticSearch logging, this PR enables that feature by adding the config into the shared logger used within Ghost. --- core/shared/logging.js | 1 + 1 file changed, 1 insertion(+) diff --git a/core/shared/logging.js b/core/shared/logging.js index e057e8166b..63a9faaf90 100644 --- a/core/shared/logging.js +++ b/core/shared/logging.js @@ -11,5 +11,6 @@ module.exports = logging({ transports: config.get('logging:transports'), gelf: config.get('logging:gelf'), loggly: config.get('logging:loggly'), + elasticsearch: config.get('logging:elasticsearch'), rotation: config.get('logging:rotation') });