-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Fixes for several string formats, they are based on static analysis. #6306
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
base: master
Are you sure you want to change the base?
Changes from all commits
441ad6e
23641f6
e557c1c
bc06523
5ee9bbc
3eaee4b
ec9d885
fc2f147
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -121,9 +121,9 @@ private void initClass() { | |
javaClass = Class.forName(name, false, Thread.currentThread().getContextClassLoader()); | ||
Method method = javaClass.getMethod("teardownTest", JavaSamplerContext.class); | ||
isToBeRegistered = !method.getDeclaringClass().equals(AbstractJavaSamplerClient.class); | ||
log.info("Created class: {}. Uses tearDownTest: ", name, isToBeRegistered); | ||
log.info("Created class: {}. Uses tearDownTest: {}", name, isToBeRegistered); | ||
} catch (Exception e) { | ||
log.error("{}\tException initialising: ", whoAmI(), name, e); | ||
log.error("{}\tException initialising: {}", whoAmI(), name, e); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. While the text in the message looks like it is missing a placeholder, I would refrain from adding it here. Adding a placeholder will loose the stacktrace, which could be helpful identifying the root cause. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I restored this placeholder |
||
} | ||
|
||
} | ||
|
Uh oh!
There was an error while loading. Please reload this page.