You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 14, 2017. It is now read-only.
public void Configuration(IAppBuilder app)
{
Log.Logger = new LoggerConfiguration()
.MinimumLevel.Verbose()
.WriteTo.RollingFile("C:\temp\trace-{Date}.log")
.CreateLogger();
//Serilog.Debugging.SelfLog.Enable((msg) => System.Diagnostics.Debug.WriteLine(msg));
ConfigureIdentityAdminApplication(app);
}
I only receive the following log messages:
2016-12-30 13:04:40.593 +01:00 [Information] Starting IdentityAdmin configuration
2016-12-30 13:04:43.798 +01:00 [Information] User is authenticated from Cookies; issuing challenge
2016-12-30 13:04:45.101 +01:00 [Information] User is authenticated from Cookies
whereas while I have my debugger attached I see tons of liblog messages I would like to have in my logfile as well.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
With my Startup.cs looking like this:
I only receive the following log messages:
whereas while I have my debugger attached I see tons of liblog messages I would like to have in my logfile as well.
The text was updated successfully, but these errors were encountered: