Skip to content

Commit

Permalink
Fix log statement
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Jackson <[email protected]>
  • Loading branch information
cdjackson committed Nov 3, 2024
1 parent e93cc35 commit 02152a1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ public boolean writeBackup(ZigBeeNetworkBackupDao backup) {
stream.marshal(backup, new PrettyPrintWriter(writer));
writer.close();
} catch (Exception e) {
logger.error("Error writing network backup: ", backup.getUuid(), e);
logger.error("{}: Error writing network backup: ", backup.getUuid(), e);
return false;
}

Expand Down

0 comments on commit 02152a1

Please sign in to comment.