This is an automated email from the ASF dual-hosted git repository.
fschumacher pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jmeter.git
The following commit(s) were added to refs/heads/master by this push:
new 077b58e Make log messages more consistent
077b58e is described below
commit 077b58e518c0afe4253379f75ee14ea2d326eae3
Author: Felix Schumacher <[email protected]>
AuthorDate: Tue Nov 24 16:00:45 2020 +0100
Make log messages more consistent
* Use space after colon
* put parenthesis around placeholder to make start and end of value clearer
Bugzilla Id: 64935
---
src/core/src/main/java/org/apache/jmeter/gui/util/JMeterMenuBar.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/src/core/src/main/java/org/apache/jmeter/gui/util/JMeterMenuBar.java
b/src/core/src/main/java/org/apache/jmeter/gui/util/JMeterMenuBar.java
index 0091776..b6c2ffe 100644
--- a/src/core/src/main/java/org/apache/jmeter/gui/util/JMeterMenuBar.java
+++ b/src/core/src/main/java/org/apache/jmeter/gui/util/JMeterMenuBar.java
@@ -233,10 +233,10 @@ public class JMeterMenuBar extends JMenuBar implements
LocaleChangeListener {
creators.add(creator);
}
} catch (NoClassDefFoundError e) {
- log.error("Exception registering implementation:{} of
interface:{}, a dependency used by the plugin class is missing",
+ log.error("Exception registering implementation: [{}] of
interface: [{}], a dependency used by the plugin class is missing",
strClassName, MenuCreator.class, e);
} catch (Exception e) {
- log.error("Exception registering implementation {} of
interface:{}, a jar is probably missing",
+ log.error("Exception registering implementation: [{}] of
interface: [{}], a jar is probably missing",
strClassName, MenuCreator.class, e);
}
}