3 Commits

Author SHA1 Message Date
Michael
28ec33d214 Merge pull request #68 from RatzzFatzz/dev
v5.1
2026-01-16 00:44:54 +01:00
RatzzFatzz
e80331beef Fix log4j2 file link on windows 2026-01-15 21:16:10 +01:00
RatzzFatzz
a5fce22b95 Fix lastExecutionHandler NPE 2026-01-15 21:14:54 +01:00
2 changed files with 2 additions and 2 deletions

View File

@@ -138,7 +138,7 @@
<winShortcut>false</winShortcut> <winShortcut>false</winShortcut>
<winMenu>false</winMenu> <winMenu>false</winMenu>
<javaOptions> <javaOptions>
<javaOption>-Dlog4j2.configurationFile=log4j2-windows.yaml</javaOption> <javaOption>-Dlog4j2.configurationFile=log4j2-windows.yml</javaOption>
</javaOptions> </javaOptions>
</configuration> </configuration>
<executions> <executions>

View File

@@ -65,7 +65,7 @@ public abstract class AttributeUpdater {
executor.awaitTermination(1, TimeUnit.DAYS); executor.awaitTermination(1, TimeUnit.DAYS);
} }
lastExecutionHandler.persist(); if (lastExecutionHandler != null) lastExecutionHandler.persist();
statistic.stopTimer(); statistic.stopTimer();
statistic.print(); statistic.print();