Skip to content

Commit

Permalink
refs and cleanup
Browse files Browse the repository at this point in the history
SimonCropp committed Aug 14, 2024
1 parent a009731 commit eb9209e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Splat/AssemblyToProcess/ClassWithLogging.cs
Original file line number Diff line number Diff line change
@@ -19,7 +19,7 @@ public void DebugString()

public void DebugStringFunc()
{
LogTo.Debug(()=>"TheMessage");
LogTo.Debug(() => "TheMessage");
}

public void DebugStringParams()
@@ -34,7 +34,7 @@ public void DebugStringException()

public void DebugStringExceptionFunc()
{
LogTo.DebugException(()=>"TheMessage", new());
LogTo.DebugException(() => "TheMessage", new());
}

public bool IsInfoEnabled()

0 comments on commit eb9209e

Please sign in to comment.