Skip to content

Commit

Permalink
fix: bad string format specifier
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew-welker committed Nov 3, 2023
1 parent aaa7c89 commit 2dd0d4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Pdu-Wattbox-Epi/WattboxController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ private void UpdateOnlineStatus(bool online)
catch (Exception ex)
{
Debug.Console(0, this, "Exception updating online status: {0}", ex.Message);
Debug.Console(1, this, "Exception updating online status: {1}", ex.StackTrace);
Debug.Console(1, this, "Exception updating online status: {0}", ex.StackTrace);
}
}

Expand Down

0 comments on commit 2dd0d4e

Please sign in to comment.