Skip to content

Commit

Permalink
Merge pull request #236 from bobjacobsen/bobjacobsen-more-verbosity
Browse files Browse the repository at this point in the history
Add info message to save complete, backup complete
  • Loading branch information
dpharris authored Nov 4, 2023
2 parents 0eaf235 + 2214641 commit fc8643a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/org/openlcb/cdi/swing/CdiPanel.java
Original file line number Diff line number Diff line change
Expand Up @@ -388,6 +388,8 @@ private void saveChanged() {
}
}
checkForSave();

logger.info("Save changes done.");
}

private void checkForSave() {
Expand Down Expand Up @@ -446,6 +448,7 @@ public void runBackup() {
e.printStackTrace();
logger.severe("Failed to write variables to file " + fci.getSelectedFile().getPath() + ": " + e.toString());
}
logger.info("Config backup done.");
}

private String generateFileName() {
Expand Down

0 comments on commit fc8643a

Please sign in to comment.