mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Make parser nodes errors actual errors.
(more cleanup will probably be necessary - but this is a start)
This commit is contained in:
parent
dc7701ad70
commit
9f012c261a
@ -75,7 +75,7 @@ module.exports = function(RED) {
|
||||
msg.payload = ou;
|
||||
node.send(msg);
|
||||
}
|
||||
catch(e) { node.log(e); }
|
||||
catch(e) { node.error(e); }
|
||||
}
|
||||
else if (typeof msg.payload == "string") { // convert CSV string to object
|
||||
try {
|
||||
@ -160,9 +160,9 @@ module.exports = function(RED) {
|
||||
node.send(msg); // finally send the array
|
||||
}
|
||||
}
|
||||
catch(e) { node.log(e); }
|
||||
catch(e) { node.error(e); }
|
||||
}
|
||||
else { node.log("This node only handles csv strings or js objects."); }
|
||||
else { node.warn("This node only handles csv strings or js objects."); }
|
||||
}
|
||||
});
|
||||
}
|
||||
|
@ -52,7 +52,7 @@ module.exports = function(RED) {
|
||||
node.send(msg);
|
||||
}
|
||||
} catch (error) {
|
||||
node.log('Error: '+error.message);
|
||||
node.error('Error: '+error.message);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
@ -28,7 +28,7 @@ module.exports = function(RED) {
|
||||
msg.payload = JSON.parse(msg.payload);
|
||||
node.send(msg);
|
||||
}
|
||||
catch(e) { node.log(e+ "\n"+msg.payload); }
|
||||
catch(e) { node.error(e+ "\n"+msg.payload); }
|
||||
}
|
||||
else if (typeof msg.payload === "object") {
|
||||
if (!Buffer.isBuffer(msg.payload) ) {
|
||||
@ -38,7 +38,7 @@ module.exports = function(RED) {
|
||||
}
|
||||
}
|
||||
}
|
||||
else { node.log("dropped: "+msg.payload); }
|
||||
else { node.warn("dropped: "+msg.payload); }
|
||||
}
|
||||
});
|
||||
}
|
||||
|
@ -40,7 +40,7 @@ module.exports = function(RED) {
|
||||
}
|
||||
});
|
||||
}
|
||||
else { node.log("This node only handles xml strings or js objects."); }
|
||||
else { node.warn("This node only handles xml strings or js objects."); }
|
||||
}
|
||||
});
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user