We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 486048c commit caf7cb5Copy full SHA for caf7cb5
Flow.Launcher.Infrastructure/Logger/Log.cs
@@ -29,7 +29,11 @@ static Log()
29
30
var configuration = new LoggingConfiguration();
31
32
- const string layout = @"${logger}->${time}|${level}|${message}|${onexception:inner=${logger}->${date:format=HH\:mm\:ss}|${level}|${message}|${newline}${exception:format=toString}${newline}";
+ const string layout =
33
+ @"${date:format=HH\:mm\:ss.ffffK} - " +
34
+ @"${level:uppercase=true} - ${logger} - ${message:l}" +
35
+ @"${onexception:${newline}${newline}" +
36
+ @"EXCEPTION OCCURS\: ${exception:format=tostring}${newline}}";
37
38
var fileTarget = new FileTarget
39
{
0 commit comments