Make parser nodes errors actual errors.

(more cleanup will probably be necessary - but this is a start)
This commit is contained in:
dceejay
2015-02-23 19:30:15 +00:00
parent dc7701ad70
commit 9f012c261a
4 changed files with 7 additions and 7 deletions

View File

@@ -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."); }
}
});
}