Does anyone know if there's a way to tap into the console messages printed in the Godot editor? I don't need this in runtime - it's only needed in "TOOLS" mode in order to intercept messages from other tools.
Here's how this is done in Unity:
Application.logMessageReceivedThreaded += (string condition, string stackTrace, LogType type) => { };
Thanks!