Skip to content

Commit

Permalink
Suppress verbose output in interpreter loop
Browse files Browse the repository at this point in the history
  • Loading branch information
subbuss committed Oct 27, 2014
1 parent 1ace488 commit 5e7fd54
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -632,7 +632,7 @@ private static IRubyObject interpret(ThreadContext context, IRubyObject self,
} catch (Throwable t) {
extractToMethodToAvoidC2Crash(context, instr, t);

if (debug) LOG.info("in : " + interpreterContext + ", caught Java throwable: " + t + "; excepting instr: " + instr);
if (debug) LOG.info("in : " + interpreterContext.getStaticScope().getIRScope() + ", caught Java throwable: " + t + "; excepting instr: " + instr);
ipc = instr.getRPC();
if (debug) LOG.info("ipc for rescuer: " + ipc);

Expand Down

0 comments on commit 5e7fd54

Please sign in to comment.