You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: powertools-logging/powertools-logging-log4j/src/main/java/software/amazon/lambda/powertools/logging/log4j/BufferingAppender.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -76,7 +76,7 @@
76
76
* <li>During Lambda INIT phase (no trace ID): logs are output directly</li>
77
77
* <li>During Lambda execution (with trace ID): logs are buffered or output based on level</li>
78
78
* <li>When buffer overflows: oldest logs are discarded and a warning is logged</li>
79
-
* <li>On Lambda completion: remaining buffered logs can be flushed via {@link software.amazon.lambda.powertools.logging.PowertoolsLogging}</li>
79
+
* <li>On Lambda completion: buffer is auto-cleared when used with {@code @Logging} annotation</li>
Copy file name to clipboardExpand all lines: powertools-logging/powertools-logging-logback/src/main/java/software/amazon/lambda/powertools/logging/logback/BufferingAppender.java
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,7 @@
39
39
* <ul>
40
40
* <li><strong>Trace-based buffering:</strong> Groups logs by AWS X-Ray trace ID</li>
41
41
* <li><strong>Selective output:</strong> Only buffers logs at or below configured verbosity level</li>
42
-
* <li><strong>Auto-flush on errors:</strong> Automatically outputs buffered logs when ERROR events occur</li>
42
+
* <li><strong>Auto-flush on errors:</strong> Automatically outputs buffered logs when ERROR/FATAL events occur</li>
0 commit comments