If you are writing out flows in a text editor or IDE, you will probably want to control the logging from your code rather than from the Flow administrative interface. (If you don't , you will unintentionally reset your logging back to the default.)
Insert this code snippet right after the processors object for each flow to adjust the logging:
"consoleFilter":{
"trace":true,
"debug":true,
"info":true,
"warn":true,
"error":true,
"other":true,
"forceStreams":true,
"sendToCentralReporter":true,
"summarizeToCentral":true,
"saveStateToDb":true,
"synchronous":true,
"consoleMessageSynchronous":true,
"logPayload":true,
"logEnd":true,
"logMiddle":true,
"logStart":true,
"inMemoryConsoleLimit":0
},
Click to copy
Comments
0 comments
Please sign in to leave a comment.