Skip to content

Commit 04f7dd4

Browse files
committedJul 9, 2018
Fix log message for indy != and !~.
1 parent 046ed6e commit 04f7dd4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

Diff for: ‎core/src/main/java/org/jruby/ir/targets/InvokeSite.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ MethodHandle buildNotEqualHandle(DynamicMethod method, IRubyObject self) {
394394
mh = MethodHandles.filterReturnValue(equalHandle, filter);
395395

396396
if (Options.INVOKEDYNAMIC_LOG_BINDING.load()) {
397-
LOG.info(name() + "\tbound as new instance creation " + Bootstrap.logMethod(method));
397+
LOG.info(name() + "\tbound as specialized " + name() + ":" + Bootstrap.logMethod(method));
398398
}
399399
}
400400
}

0 commit comments

Comments
 (0)
Please sign in to comment.