This commit is contained in:
Steve Walsh 2023-11-14 14:23:19 +00:00
parent c52c8e3b20
commit 5c06a30785
4 changed files with 7 additions and 3 deletions

View File

@ -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 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 # CHANGE-LOG
## 0.18.7-patch-14
2023-11-14
- Log fix to no longer be stringified
## 0.18.7-patch-13 ## 0.18.7-patch-13
2023-11-13 2023-11-13
- Small fix for codefile logic - Small fix for codefile logic

View File

@ -296,7 +296,7 @@ module.exports = function (RED) {
metrics.error = error; metrics.error = error;
metrics.action = 'codefile-error'; metrics.action = 'codefile-error';
} }
logger.info(JSON.stringify(metrics, null, 2)); logger.info(metrics);
} catch (e) { } catch (e) {
logger.error(e) logger.error(e)
logger.error({ logger.error({

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{ {
"name": "@servisbot/node-red", "name": "@servisbot/node-red",
"version": "0.18.7-patch-12", "version": "0.18.7-patch-13",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {

View File

@ -1,6 +1,6 @@
{ {
"name": "@servisbot/node-red", "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", "description": "A visual tool for wiring the Internet of Things",
"homepage": "http://nodered.org", "homepage": "http://nodered.org",
"license": "Apache-2.0", "license": "Apache-2.0",