Skip to content

Instantly share code, notes, and snippets.

@sametoz
Created May 3, 2020 08:25
Show Gist options
  • Save sametoz/c236202a4962a0ea341278135020bb30 to your computer and use it in GitHub Desktop.
Save sametoz/c236202a4962a0ea341278135020bb30 to your computer and use it in GitHub Desktop.
public static void Main(string[] args)
{
...
Log.Logger = new LoggerConfiguration()
.Enrich.FromLogContext()
.WriteTo.MSSqlServer(
connectionString: appSettings.GetConnectionString("DB"),
sinkOptions: sinkOpts,
columnOptions: columnOptions,
restrictedToMinimumLevel: LogEventLevel.Error
).CreateLogger();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment