-
Notifications
You must be signed in to change notification settings - Fork 1k
make rmi indy-ready #14845
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
make rmi indy-ready #14845
Conversation
…nstrumentation into indy-rmi2
@laurit the build has been running for hours and seems stuck, but I can't cancel it. Can you cancel it and/or restart it ? |
…nstrumentation into indy-rmi2
...in/java/io/opentelemetry/javaagent/instrumentation/rmi/client/UnicastRefInstrumentation.java
Outdated
Show resolved
Hide resolved
...n/java/io/opentelemetry/javaagent/instrumentation/rmi/context/client/VirtualFieldHelper.java
Outdated
Show resolved
Hide resolved
…nstrumentation into indy-rmi2
logger.log( | ||
FINE, | ||
"Exposing package '{0}' in module '{1}' to module '{2}'", | ||
"Exposing package {0} in module {1} to module {2}", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd revert this
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The problem here is that with extra quotes, the variables were not written to the template, I've simply removed them to avoid having to use escaping.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks. This appears to be a side-effect of our logging implementation that uses java.text.MessageFormat
. If I remember correctly adding quotes like that would have been fine with slf4j that we use as the underlying implementation.
Part of #13031 for rmi instrumentation