We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e80ad08 commit 753ec57Copy full SHA for 753ec57
src/flow-debugger.ts
@@ -28,6 +28,7 @@ module.exports = (RED:any) => {
28
flowDebugger.on("messageQueued", (event) => {
29
// Don't include the full message on the event
30
// event.msg = RED.util.encodeObject({msg:event.msg}, {maxLength: 100});
31
+ delete event.msg;
32
RED.comms.publish("flow-debugger/messageQueued",event)
33
});
34
flowDebugger.on("messageDispatched", (event) => {
0 commit comments