Skip to content

Instantly share code, notes, and snippets.

@mivano
Forked from nblumhardt/gist:8914175
Last active August 29, 2015 14:03
Show Gist options
  • Save mivano/bbb7563b31177e038608 to your computer and use it in GitHub Desktop.
Save mivano/bbb7563b31177e038608 to your computer and use it in GitHub Desktop.
Serilog extension for log context
public static class LoggerExtensions
{
public static ILogger ForHere(
this ILogger logger,
[CallerFilePath] string sourceFile = null,
[CallerLineNumber] int sourceLine = 0)
{
return logger
.ForContext("SourceFile", sourceFile)
.ForContext("SourceLine", sourceLine);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment