Skip to content

Commit

Permalink
fix: send context messages for exceptions to err
Browse files Browse the repository at this point in the history
  • Loading branch information
wlsnmrk committed Jan 28, 2025
1 parent 0c54c36 commit e14a405
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Chickensoft.Log/src/ILog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public interface ILog {
/// <param name="e">Exception to print.</param>
/// <param name="message">Message to output.</param>
public void Print(Exception e, string message) {
Print(message);
Err(message);
Print(e);
}

Expand Down

0 comments on commit e14a405

Please sign in to comment.