report file made on exit

This commit is contained in:
Joshua Perry 2023-02-03 18:06:34 +00:00
parent 4d9008fde2
commit 8fc11ec111
1 changed files with 6 additions and 1 deletions

View File

@ -32,7 +32,12 @@ public class Manager extends Application {
@Override
public void stop() {
//TODO: output report to file
try {
competitors.createReportFile();
}
catch (IOException e) {
createErrorLog(e, "src/main/resources/com/r0r5chach/log.txt");
}
}
public static void setRoot(String fxml) throws IOException {