We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e49bdc commit 232abeaCopy full SHA for 232abea
src/main/java/org/mangorage/mangobot/modules/logs/LogAnalyser.java
@@ -53,7 +53,7 @@ public void addAll(LogAnalyserModule... modules) {
53
}
54
55
public void readLog(StringBuilder message, String log) {
56
- log = log.replace("\\r?\\n", "\\n");
+ log = log.replaceAll("\\r?\\n", "\\n");
57
for(LogAnalyserModule mod : mods) {
58
mod.analyse(log, message);
59
0 commit comments