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 5810fca commit dd2201eCopy full SHA for dd2201e
core/runtime/src/main/java/io/quarkus/runtime/logging/LogRuntimeConfig.java
@@ -207,6 +207,9 @@ interface FileConfig {
207
interface RotationConfig {
208
/**
209
* The maximum log file size, after which a rotation is executed.
210
+ * Note that the file is rotated <em>after</em> the log record is written.
211
+ * Thus, this isn't a hard maximum on the file size; rather, it's a hard <em>minimum</em>
212
+ * on the size of the file before it is rotated.
213
*/
214
@WithDefault("10M")
215
@WithConverter(MemorySizeConverter.class)
0 commit comments