updated log error message as suggested by coderabbit

This commit is contained in:
Jan-Peter Klein
2024-04-04 13:30:47 +02:00
parent 43d0dd99ec
commit 853ea69180

View File

@@ -38,7 +38,7 @@ public interface UpdateReminderComponent {
stage.show();
}
} catch (DateTimeParseException e) {
LOG.error("The date/time format is invalid:" + settings().lastUpdateCheck.get(), e);
LOG.error("Failed to parse last update check time '{}':", settings().lastUpdateCheck.get(), e);
}
}