Folks, this has got me going around in circles.
I have OLD (Noah vintage) code and it is (of course) buggy.
I've put in new code to help parse the error and give me more information, but.....
It isn't working.
This is what I'm getting Oops message [object Object]
Which doesn't help.
This is the node which makes the message:
if (msg.payload == "On-line") {
msg.payload = ({ fill: "green", text: "Online" });
} else
if (msg.payload == "Off-lineB")
{
msg.payload = ({ fill: "yellow", text: "Offline" });
} else
if (msg.payload == "Off-lineC")
{
msg.payload = ({ fill: "red", text: "Offline" });
} else
if (msg.payload == "Off-line") {
msg.payload = ({ fill: "yellow", text: "Offline" });
} else
{
msg.payload = ({fill: "blue", text: "oops"});
node.warn("Oops message " + msg.payload);
}
return msg;
Note the node.warn
line.
So - looking at it - the message is an object. Fair enough.
But I'd like to see that object so I can better understand what is going on.
This is only the first step as I have another subflow
further down the line which is saying it is getting errors when it isn't and I am going to have to put in serious work to get my head around it.
I digress.
Sorry.
So what do I need to do to expand the objects so I can better see what's going on?
Thanks in advance.