summary refs log tree commit diff
diff options
context:
space:
mode:
authoruser <user@node5.net>2024-03-17 15:46:55 +0100
committeruser <user@node5.net>2024-03-17 15:46:55 +0100
commitd28c293258650ca6f71d4f597b34f338cf57d9c9 (patch)
tree855897bb0ffd92db93ac230ab6c6a4507fedc908
parent026ed71b0bcef9cd17a3358aa3e9684d8c16a3da (diff)
logging - fix indentation, reformulate
-rw-r--r--How-to/Python/Logging.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/How-to/Python/Logging.md b/How-to/Python/Logging.md
index d11f116..4d05607 100644
--- a/How-to/Python/Logging.md
+++ b/How-to/Python/Logging.md
@@ -7,8 +7,8 @@ description: Python logging with ✨pretty colors🌸
 Logging is useful, because all python code can use the same standard, allowing you to centrally control:
 
 - Which messages you wish to see
-- Every debug message, for local development
-    - Just information, for an end user deployment
+    - Every debug message, for local development
+    - Disable debug messages, by changing 1 line e.g. for end user deployment
 - How to format them
     - Do you wish to see which module and line of code this message originated from
 - Where they should end up