If you really want to monitor those with colour, a custom Node-RED logging function would do it. Quite a lot of work for potentially little benefit though. Maybe pass through a change or function node before sending to debug and filtering the control codes out of the text.
you can set the console output to use colours by the settings.js debugUseColors: true, option - but this only does the console output... not the debug sidebar.
What I'm trying to achieve is to extract data coming through the serial port after executing a Linux command and processing it through node-red functions. Right now, it is quite difficult to extract the data due to the weird symbol.
For example, based on the picture above, I'm executing memtester command and wanted to extract the OK and process it in the function node and display it on the dashboard if the test is passed or failed. I can't specify the location of OK because when testing different amounts of memory the location of OK will be different.
By setting debugUseColors: true in the setting.js, will it remove the symbols and tag? Or is there any other suggestion on how to approach this? The color is not the priority, if I can filter the weird symbols/color tag to have cleaner data input that would be great.