diff --git a/README.md b/README.md index 11b7d5a5b..60511d9a7 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,10 @@ To make a change to the node-red runtime being used by K4 avalanche: When doing dev work dont try to link into k4/k5 it just causes issue, instead just go into the node-modules of k4/k5 and make your changes in there # CHANGE-LOG +## 0.18.7-patch-14 +2023-11-14 +- Log fix to no longer be stringified + ## 0.18.7-patch-13 2023-11-13 - Small fix for codefile logic diff --git a/nodes/core/core/80-function.js b/nodes/core/core/80-function.js index d6f674fe9..6cf80a134 100644 --- a/nodes/core/core/80-function.js +++ b/nodes/core/core/80-function.js @@ -296,7 +296,7 @@ module.exports = function (RED) { metrics.error = error; metrics.action = 'codefile-error'; } - logger.info(JSON.stringify(metrics, null, 2)); + logger.info(metrics); } catch (e) { logger.error(e) logger.error({ diff --git a/package-lock.json b/package-lock.json index 8a828aab7..00f67b02c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@servisbot/node-red", - "version": "0.18.7-patch-12", + "version": "0.18.7-patch-13", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index b1410193c..2b301dc16 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@servisbot/node-red", - "version": "0.18.7-patch-13", + "version": "0.18.7-patch-14", "description": "A visual tool for wiring the Internet of Things", "homepage": "http://nodered.org", "license": "Apache-2.0",