Include milliseconds in the log output (#10016)

This commit is contained in:
Jaroslav Tulach 2024-05-23 16:44:32 +02:00 committed by GitHub
parent 39098e2c26
commit 0a010b3f71
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -70,7 +70,7 @@ public abstract sealed class Appender
}
public static final String defaultPattern =
"[%level] [%d{yyyy-MM-dd'T'HH:mm:ssXXX}] [%logger] %msg%n";
"[%level] [%d{yyyy-MM-dd'T'HH:mm:ss.SSS}] [%logger] %msg%n";
protected static final String patternKey = "pattern";
private static final String nameKey = "name";
}