@5minds/node-red-contrib-processcube
Advanced tools
Comparing version 1.5.10-develop-a2fb08-m42pvg54 to 1.5.10-develop-c37022-m4mt2dwt
@@ -55,3 +55,3 @@ module.exports = function (RED) { | ||
} catch (error) { | ||
node.error(error); | ||
node.error(JSON.stringify(error)); | ||
} | ||
@@ -58,0 +58,0 @@ |
{ | ||
"name": "@5minds/node-red-contrib-processcube", | ||
"version": "1.5.10-develop-a2fb08-m42pvg54", | ||
"version": "1.5.10-develop-c37022-m4mt2dwt", | ||
"license": "MIT", | ||
@@ -5,0 +5,0 @@ "description": "Node-RED nodes for ProcessCube", |
@@ -71,3 +71,3 @@ module.exports = function (RED) { | ||
} catch (error) { | ||
node.error(error); | ||
node.error(JSON.stringify(error)); | ||
} | ||
@@ -115,3 +115,3 @@ }, | ||
} catch (error) { | ||
node.error(error); | ||
node.error(JSON.stringify(error)); | ||
} | ||
@@ -157,3 +157,3 @@ }, | ||
} catch (error) { | ||
node.error(error); | ||
node.error(JSON.stringify(error)); | ||
} | ||
@@ -200,3 +200,3 @@ }, | ||
} catch (error) { | ||
node.error(error); | ||
node.error(JSON.stringify(error)); | ||
} | ||
@@ -241,3 +241,3 @@ }, | ||
} catch (error) { | ||
node.error(error); | ||
node.error(JSON.stringify(error)); | ||
} | ||
@@ -283,3 +283,3 @@ }, | ||
} catch (error) { | ||
node.error(error); | ||
node.error(JSON.stringify(error)); | ||
} | ||
@@ -324,3 +324,3 @@ }, | ||
} catch (error) { | ||
node.error(error); | ||
node.error(JSON.stringify(error)); | ||
} | ||
@@ -365,3 +365,3 @@ }, | ||
} catch (error) { | ||
node.error(error); | ||
node.error(JSON.stringify(error)); | ||
} | ||
@@ -368,0 +368,0 @@ }, |
@@ -7,3 +7,2 @@ module.exports = function (RED) { | ||
node.on('input', function (msg) { | ||
const initialToken = RED.util.encodeObject(msg.payload); | ||
@@ -17,2 +16,12 @@ | ||
if (!startParameters.processModelId) { | ||
node.error('No processModelId configured.'); | ||
return; | ||
} | ||
if (!startParameters.startEventId) { | ||
node.error('No startEventId configured.'); | ||
return; | ||
} | ||
const engine = RED.nodes.getNode(config.engine); | ||
@@ -39,3 +48,3 @@ const client = engine.engineClient; | ||
.catch((error) => { | ||
node.error(error); | ||
node.error(JSON.stringify(error)); | ||
}); | ||
@@ -42,0 +51,0 @@ }); |
@@ -21,3 +21,3 @@ module.exports = function (RED) { | ||
.catch((error) => { | ||
node.error(error); | ||
node.error(JSON.stringify(error)); | ||
}); | ||
@@ -24,0 +24,0 @@ }); |
@@ -130,3 +130,3 @@ const EventEmitter = require('node:events'); | ||
} catch (e) { | ||
node.error(`Could not get fresh identity: ${e}`); | ||
node.error(`Could not get fresh identity: ${JSON.stringify(e)}`); | ||
} | ||
@@ -133,0 +133,0 @@ } |
@@ -46,3 +46,3 @@ module.exports = function (RED) { | ||
}).catch((error) => { | ||
node.error(error); | ||
node.error(JSON.stringify(error)); | ||
}); | ||
@@ -49,0 +49,0 @@ }); |
@@ -51,3 +51,3 @@ module.exports = function (RED) { | ||
} catch (error) { | ||
node.error(error); | ||
node.error(JSON.stringify(error)); | ||
} | ||
@@ -54,0 +54,0 @@ }); |
@@ -33,3 +33,3 @@ module.exports = function (RED) { | ||
.catch((error) => { | ||
node.error(error); | ||
node.error(JSON.stringify(error)); | ||
}); | ||
@@ -36,0 +36,0 @@ }); |
@@ -60,3 +60,3 @@ module.exports = function (RED) { | ||
} catch (error) { | ||
node.error(error); | ||
node.error(JSON.stringify(error)); | ||
} | ||
@@ -63,0 +63,0 @@ }; |
@@ -39,3 +39,3 @@ module.exports = function (RED) { | ||
.catch((error) => { | ||
node.error(error); | ||
node.error(JSON.stringify(error)); | ||
}); | ||
@@ -42,0 +42,0 @@ }); |
@@ -27,3 +27,3 @@ module.exports = function (RED) { | ||
.catch((error) => { | ||
node.error(error); | ||
node.error(JSON.stringify(error)); | ||
}); | ||
@@ -30,0 +30,0 @@ } else { |
@@ -46,3 +46,3 @@ module.exports = function (RED) { | ||
} catch (error) { | ||
node.error(error); | ||
node.error(JSON.stringify(error)); | ||
} | ||
@@ -79,3 +79,3 @@ }, | ||
} catch (error) { | ||
node.error(error); | ||
node.error(JSON.stringify(error)); | ||
} | ||
@@ -82,0 +82,0 @@ } |
527052
10144