summary refs log tree commit diff
path: root/How-to/Python/Logging.md
diff options
context:
space:
mode:
Diffstat (limited to 'How-to/Python/Logging.md')
-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