File tree 3 files changed +8
-1
lines changed
common/src/main/java/com/fox2code/foxloader
3 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -138,6 +138,12 @@ public void println(@Nullable String line) {
138
138
rootLogger .log (level , line );
139
139
}
140
140
}
141
+
142
+ @ Override
143
+ public void flush () {
144
+ super .flush ();
145
+ directFileHandler .flush ();
146
+ }
141
147
}
142
148
143
149
private static class FoxLoaderLogFormatter extends SimpleFormatter {
Original file line number Diff line number Diff line change @@ -73,6 +73,7 @@ private void doCompleteThreadDump(boolean andExit) {
73
73
System .out .println ();
74
74
}
75
75
if (andExit ) {
76
+ System .out .flush ();
76
77
System .exit (1 );
77
78
}
78
79
}
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ org.gradle.parallel=true
3
3
org.gradle.jvmargs =-Xmx1024m -XX:-UseGCOverheadLimit -Dfile.encoding=UTF-8
4
4
5
5
# FoxLoader properties
6
- foxloader.version =1.3.1
6
+ foxloader.version =1.3.2
7
7
foxloader.lastReIndevTransformerChanges =1.3.0
8
8
# https://www.jitpack.io/#com.fox2code/FoxLoader
9
9
You can’t perform that action at this time.
0 commit comments