Skip to content

Commit 5349bf7

Browse files
committed
Don't filter debug properties starting with _
Fixes node-red#1117
1 parent a79e4d1 commit 5349bf7

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

nodes/core/core/58-debug.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -118,9 +118,6 @@ module.exports = function(RED) {
118118
}
119119
if (isArray || (msg.format === "Object")) {
120120
msg.msg = safeJSONStringify(msg.msg, function(key, value) {
121-
if (key[0] === '_' && key !== "_msgid") {
122-
return undefined;
123-
}
124121
if (key === '_req' || key === '_res') {
125122
return "[internal]"
126123
}

0 commit comments

Comments
 (0)