Skip to content

Commit 6069630

Browse files
Fixes wrong error message
1 parent cee7ba4 commit 6069630

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/com/teragrep/jla_04/RelpConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ private String getProperty(String name, String fallback) {
114114
String from_prop = this.manager.getProperty("java.util.logging.RelpHandler." + this.getName() + "." + name);
115115
if (from_prop != null) {
116116
if(from_prop.equals("")) {
117-
throw new IllegalArgumentException("Field is set but has no value: com.teragrep.jla_04.RelpHandler." + this.getName() + "." + name);
117+
throw new IllegalArgumentException("Field is set but has no value: java.util.logging.RelpHandler." + this.getName() + "." + name);
118118
}
119119
return from_prop;
120120
}

0 commit comments

Comments
 (0)