You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (this.syslog.getProtocol().equals(syslog.getProtocol())) {
48
-
thrownewSyslogRuntimeException("Ignoring this log entry since the backLog protocol \"" + this.syslog.getProtocol() + "\" is the same as the main protocol");
48
+
thrownewSyslogRuntimeException("Ignoring this log entry since the backLog protocol \"%s\" is the same as the main protocol", this.syslog.getProtocol());
Copy file name to clipboardExpand all lines: src/main/java/org/productivity/java/syslog4j/impl/message/modifier/checksum/ChecksumSyslogMessageModifier.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -52,7 +52,7 @@ public ChecksumSyslogMessageModifierConfig getConfig() {
52
52
53
53
protectedvoidcontinuousCheckForVerify() {
54
54
if (this.config.isContinuous()) {
55
-
thrownewSyslogRuntimeException(this.getClass().getName() + ".verify(..) does not work with isContinuous() returning true");
55
+
thrownewSyslogRuntimeException("%s.verify(..) does not work with isContinuous() returning true", this.getClass().getName());
0 commit comments