Closed
Description
Hello,
first of all i would like to apologize that I'm posting this issue here,
but the serilog exceptionless extension project doesn't include the issues page.
I'm initializing logger with serilog like following
Log.Logger = new LoggerConfiguration()
.MinimumLevel.Verbose()
.WriteTo.Exceptionless(exceptionlessKey, exceptionlessUrl)
.WriteTo.File(@"c:\logs\temp_logs.txt")
.CreateLogger();
and while all the logs appear in the log file, I don't get logs below the Warning
level in my dashboard.
I am using a self hosted version of excetionless and found the line that couses this
On this line the Constants.SourceContextPropertyName
isn't getting found and because of it, it defaults to Warning
and bypasses the inital setting (in Exceptionless.Models.SettingsDictionary.GetMinLogLevel()
).
How do I fix it?
Thanks in advance