We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b9390b commit b493480Copy full SHA for b493480
src/main/java/com/falsepattern/lib/config/event/ConfigValidationFailureEvent.java
@@ -122,7 +122,9 @@ public void logWarn() {
122
errorString.append("\nArray index: ").append(listIndex);
123
}
124
customText(errorString);
125
- FalsePatternLib.getLog().error(errorString.toString());
+ for (val line: errorString.toString().split("\n")) {
126
+ FalsePatternLib.getLog().error(line);
127
+ }
128
129
130
@StableAPI(since = "0.10.0")
0 commit comments