From f0247883d5e2472cc5d6ce6a7f95bce4aa3e0000 Mon Sep 17 00:00:00 2001 From: Jonathan Samines Date: Sun, 23 Oct 2022 03:06:04 -0600 Subject: [PATCH] Update async logging caveats documentation (#1578) --- docs/asynchronous.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/asynchronous.md b/docs/asynchronous.md index 242199280..ec8af84e8 100644 --- a/docs/asynchronous.md +++ b/docs/asynchronous.md @@ -29,7 +29,7 @@ of each function execution to avoid losing data. Asynchronous logging has a couple of important caveats: -* As opposed to the default mode, there is not a one-to-one relationship between +* As opposed to the synchronous mode, there is not a one-to-one relationship between calls to logging methods (e.g. `logger.info`) and writes to a log file * There is a possibility of the most recently buffered log messages being lost in case of a system failure, e.g. a power cut.