Skip to content

Commit 5606b59

Browse files
authored
Included process time - the duration the process is running - in log file entry (#4781)
1 parent a1141b4 commit 5606b59

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ServiceControl.Infrastructure/LoggingConfigurator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public static void ConfigureLogging(LoggingSettings loggingSettings)
2222
}
2323

2424
var nlogConfig = new LoggingConfiguration();
25-
var simpleLayout = new SimpleLayout("${longdate}|${threadid}|${level}|${logger}|${message}${onexception:|${exception:format=tostring}}");
25+
var simpleLayout = new SimpleLayout("${longdate}|${processtime}|${threadid}|${level}|${logger}|${message}${onexception:|${exception:format=tostring}}");
2626

2727
var fileTarget = new FileTarget
2828
{

0 commit comments

Comments
 (0)