RubyMine Console - Clogged With XML That Hides the 'puts' output
Any time I execute a Ruby put statement, I don't get the string I expected to see.
Instead, I get a pile of XML like this:
66232: Processing in context: frame 1
66232: Selected frame no 0
66232: Processing in context: next
66232: Resumed Thread #<Thread:0x007fde178a48a8>
66232: Stopping Thread #<Thread:0x007fde178a48a8> (66232)
66232: Threads equal: true
66232: Processing in control: th l
66232: <threads>
66232: <thread id="2" status="sleep" pid="66232" />
66232: </threads>
66232: Processing in control: th l
66232: <threads>
66232: <thread id="2" status="sleep" pid="66232" />
66232: </threads>
66232: Processing in context: w
66232: <frames>
...
Process finished with exit code 130 (interrupted by signal 2: SIGINT)
How can I eliminate this extra stuff and just see the statement I put ?
Please sign in to leave a comment.
Hello, looks very similar with Verbose Debugger output. Do you mean Debugger console? If yes, you can switch it off in the Settings | Debugger | Verbose Debugger output. If it's not what you running, then provide command which you are running from Run Tool Window.