Skip to content

Commit

Permalink
Update 1.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Fox2Code committed Sep 13, 2024
1 parent 242c82c commit ef58554
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,12 @@ public void println(@Nullable String line) {
rootLogger.log(level, line);
}
}

@Override
public void flush() {
super.flush();
directFileHandler.flush();
}
}

private static class FoxLoaderLogFormatter extends SimpleFormatter {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ private void doCompleteThreadDump(boolean andExit) {
System.out.println();
}
if (andExit) {
System.out.flush();
System.exit(1);
}
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ org.gradle.parallel=true
org.gradle.jvmargs=-Xmx1024m -XX:-UseGCOverheadLimit -Dfile.encoding=UTF-8

# FoxLoader properties
foxloader.version=1.3.1
foxloader.version=1.3.2
foxloader.lastReIndevTransformerChanges=1.3.0
# https://www.jitpack.io/#com.fox2code/FoxLoader

Expand Down

0 comments on commit ef58554

Please sign in to comment.