From eb9209e7289eb95c68a447a09c3d47052598d270 Mon Sep 17 00:00:00 2001 From: Simon Cropp Date: Wed, 14 Aug 2024 19:45:43 +1000 Subject: [PATCH] refs and cleanup --- Splat/AssemblyToProcess/ClassWithLogging.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Splat/AssemblyToProcess/ClassWithLogging.cs b/Splat/AssemblyToProcess/ClassWithLogging.cs index 7432085e..0ab769d5 100644 --- a/Splat/AssemblyToProcess/ClassWithLogging.cs +++ b/Splat/AssemblyToProcess/ClassWithLogging.cs @@ -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()