Skip to content

Commit ef58554

Browse files
committed
Update 1.3.2
1 parent 242c82c commit ef58554

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

common/src/main/java/com/fox2code/foxloader/launcher/LoggerHelper.java

+6
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,12 @@ public void println(@Nullable String line) {
138138
rootLogger.log(level, line);
139139
}
140140
}
141+
142+
@Override
143+
public void flush() {
144+
super.flush();
145+
directFileHandler.flush();
146+
}
141147
}
142148

143149
private static class FoxLoaderLogFormatter extends SimpleFormatter {

common/src/main/java/com/fox2code/foxloader/utils/WatchdogThread.java

+1
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ private void doCompleteThreadDump(boolean andExit) {
7373
System.out.println();
7474
}
7575
if (andExit) {
76+
System.out.flush();
7677
System.exit(1);
7778
}
7879
}

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ org.gradle.parallel=true
33
org.gradle.jvmargs=-Xmx1024m -XX:-UseGCOverheadLimit -Dfile.encoding=UTF-8
44

55
# FoxLoader properties
6-
foxloader.version=1.3.1
6+
foxloader.version=1.3.2
77
foxloader.lastReIndevTransformerChanges=1.3.0
88
# https://www.jitpack.io/#com.fox2code/FoxLoader
99

0 commit comments

Comments
 (0)