cmd/syncthing, lib/logger: Add date to default log format (fixes #8272) (#8273)

This changes the default log format to include the date.
This commit is contained in:
Jakob Borg
2022-04-15 07:46:14 +04:00
committed by GitHub
parent bc27aa12cd
commit 61dffabf97
2 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -31,7 +31,7 @@ const (
)
const (
DefaultFlags = log.Ltime
DefaultFlags = log.Ltime | log.Ldate
DebugFlags = log.Ltime | log.Ldate | log.Lmicroseconds | log.Lshortfile
)