Skip to content

Commit

Permalink
chore: add entries parse error logging and update copyright date
Browse files Browse the repository at this point in the history
  • Loading branch information
F33RNI committed Jan 5, 2024
1 parent 1f1b4dc commit 62c8fa0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion GUIHandler.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
Copyright (C) 2023 Fern Lane, FloppyCat Simple Backup Utility
Copyright (C) 2023-2024 Fern Lane, FloppyCat Simple Backup Utility
Licensed under the GNU Affero General Public License, Version 3.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -230,6 +230,7 @@ def backup_validation_start_stop(self) -> None:
try:
input_entries = self._backupper.parse_input_entries()
except Exception as e:
logging.error("Error parsing input entries", exc_info=e)
self.dialog_helper(
"Error starting backup",
"Error parsing input entries",
Expand Down

0 comments on commit 62c8fa0

Please sign in to comment.