Skip to content

Commit

Permalink
Fix typo in SaveFileTask error log message
Browse files Browse the repository at this point in the history
Corrected "filepath" to "file path" in the log message to improve readability and maintain consistency in error reporting.
  • Loading branch information
RalfBarkow committed Jan 18, 2025
1 parent eec254b commit 6a2d5b0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ protected Object doInBackground() {
File filepath = settingsObj.getMainDataFile();
if (filepath == null) {
saveOk = false;
Constants.zknlogger.log(Level.SEVERE, "Failed to save main data file: filepath is null.");
Constants.zknlogger.log(Level.SEVERE, "Failed to save main data file: file path is null.");
return null;
}

Expand Down

0 comments on commit 6a2d5b0

Please sign in to comment.