I am trying to store the console to store errors when they occur in processing ide. I am making a custom library and using eclipse to make it. I was trying to use print streams to and store errors messages in them. Which works in eclipse but not in processing.
Is there a way in processing to store errors messages/console log?
I would like to add that to get complete debug information in the log files you need to create a file with no extension and no content called ‘debug’, in the same folder mentioned by @glv. This causes debug messages to be displayed in real time on the PDE console and these will also end up in the log files, both error and output logs. This can be useful for developers of libraries, tools or modes.