1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-08-15 14:59:44 +02:00

Fixed: 4 digit year for log lines

#4053
This commit is contained in:
Qstick 2020-01-12 00:58:36 -05:00
parent c8095faa1f
commit 70d7b3b70a

View File

@ -12,7 +12,7 @@ namespace NzbDrone.Common.Instrumentation
{
public static class NzbDroneLogger
{
private const string FILE_LOG_LAYOUT = @"${date:format=yy-M-d HH\:mm\:ss.f}|${level}|${logger}|${message}${onexception:inner=${newline}${newline}[v${assembly-version}] ${exception:format=ToString}${newline}}";
private const string FILE_LOG_LAYOUT = @"${date:format=yyyy-M-d HH\:mm\:ss.f}|${level}|${logger}|${message}${onexception:inner=${newline}${newline}[v${assembly-version}] ${exception:format=ToString}${newline}}";
private static bool _isConfigured;