Fix log statement

This commit is contained in:
Nathan McRae 2025-05-25 23:22:36 -07:00
parent 553edc8b6c
commit 2a7f9813a1

View File

@ -48,7 +48,7 @@ public class AboutController {
try {
properties.load(getClass().getClassLoader().getResourceAsStream("git.properties"));
} catch (IOException e) {
logger.log(Level.SEVERE, "Failed to load main view", e);
logger.log(Level.SEVERE, "Failed to load git information", e);
}
versionTextField.setText(String.valueOf(properties.get("git.commit.id.full")));