Skip to content
This repository has been archived by the owner on Dec 14, 2017. It is now read-only.

Tracing/Logging not showing all the interesting messages #59

Open
naymore opened this issue Dec 30, 2016 · 0 comments
Open

Tracing/Logging not showing all the interesting messages #59

naymore opened this issue Dec 30, 2016 · 0 comments

Comments

@naymore
Copy link

naymore commented Dec 30, 2016

With my Startup.cs looking like this:

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.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant