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 0f1f29e commit 46a907aCopy full SHA for 46a907a
core/runtime/src/main/java/io/quarkus/runtime/logging/FileConfig.java
@@ -2,6 +2,7 @@
2
3
import java.io.File;
4
import java.nio.charset.Charset;
5
+import java.time.format.DateTimeFormatter;
6
import java.util.Optional;
7
import java.util.logging.Level;
8
@@ -84,6 +85,8 @@ public static class RotationConfig {
84
85
* The file handler rotation file suffix.
86
* When used, the file will be rotated based on its suffix.
87
* <p>
88
+ * The suffix must be in a date-time format that is understood by {@link DateTimeFormatter}.
89
+ * <p>
90
* Example fileSuffix: .yyyy-MM-dd
91
92
* Note: If the suffix ends with .zip or .gz, the rotation file will also be compressed.
0 commit comments