Skip to content

Instantly share code, notes, and snippets.

@sjehutch
Created May 6, 2023 18:16
Show Gist options
  • Save sjehutch/cee47635eecb2307401a5e04c02c3f06 to your computer and use it in GitHub Desktop.
Save sjehutch/cee47635eecb2307401a5e04c02c3f06 to your computer and use it in GitHub Desktop.
C# Logging - Move this to a service
public void Log(string message, [CallerMemberName] string memberName = "", [CallerFilePath] string filePath = "", [CallerLineNumber] int lineNumber = 0)
{
Console.WriteLine($"[{memberName}({lineNumber}) in {filePath}]: {message}");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment