From b47b8b9214fcb0b10e4a2ae6fb38f831be5ed748 Mon Sep 17 00:00:00 2001 From: Muhammad Fiaz Date: Tue, 19 Dec 2023 20:52:01 +0530 Subject: [PATCH] Update README.md (#10) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7c9cce2..74e8cc1 100644 --- a/README.md +++ b/README.md @@ -67,10 +67,10 @@ logly.fatal("Key6", "Value6", color=logly.COLOR.CRITICAL) logly.trace("Key7", "Value7", color=logly.COLOR.BLUE) logly.log("Key8", "Value8", color=logly.COLOR.WHITE) -# Stop logging ( messages will be displayed or not logged after this point) +# Stop logging ( messages will be displayed but not logged in file after this point) logly.stop_logging() -# Log more messages after stopping logging (these won't be displayed or logged) +# Log more messages after stopping logging ( messages will be displayed but not logged in file after this point) logly.info("AnotherKey1", "AnotherValue1", color=logly.COLOR.CYAN) logly.warn("AnotherKey2", "AnotherValue2", color=logly.COLOR.YELLOW) logly.error("AnotherKey3", "AnotherValue3", color=logly.COLOR.RED)