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 f6cd719 commit e994528Copy full SHA for e994528
src/ServiceControl.Infrastructure/LoggingConfigurator.cs
@@ -91,6 +91,7 @@ public static void ConfigureLogging(LoggingSettings loggingSettings)
91
var logEventInfo = new LogEventInfo { TimeStamp = DateTime.UtcNow };
92
var loggingTo = AppEnvironment.RunningInContainer ? "console" : fileTarget.FileName.Render(logEventInfo);
93
logger.InfoFormat("Logging to file://{0} with LogLevel '{1}'", loggingTo, loggingSettings.LogLevel.Name);
94
+ logger.InfoFormat("LogPath: file://{0}", loggingSettings.LogPath);
95
}
96
97
const long megaByte = 1024 * 1024;
0 commit comments