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 dbff17a commit c874994Copy full SHA for c874994
forge/src/main/java/org/embeddedt/modernfix/forge/config/NightConfigFixer.java
@@ -46,14 +46,14 @@ public static void runReloads() {
46
runnablesToRun = new ArrayList<>(configsToReload);
47
configsToReload.clear();
48
}
49
- ModernFix.LOGGER.info("Processing {} config reloads", runnablesToRun.size());
50
for(Runnable r : runnablesToRun) {
51
try {
52
r.run();
53
} catch(RuntimeException e) {
54
e.printStackTrace();
55
56
+ ModernFix.LOGGER.info("Processed {} config reloads", runnablesToRun.size());
57
58
59
private static final Class<?> WATCHED_FILE = LamdbaExceptionUtils.uncheck(() -> Class.forName("com.electronwill.nightconfig.core.file.FileWatcher$WatchedFile"));
0 commit comments