summary refs log tree commit diff
diff options
context:
space:
mode:
authoruser <user@node5.net>2024-03-17 16:01:16 +0100
committeruser <user@node5.net>2024-03-17 16:01:16 +0100
commitb0d5cc65e57b6679260beb828fd5a6c17844ea38 (patch)
tree044e6e4f2f7060dafd4e63c1f5fc1d0a0b8953dd
parentd28c293258650ca6f71d4f597b34f338cf57d9c9 (diff)
logging - add example to module definition
-rw-r--r--How-to/Python/Logging.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/How-to/Python/Logging.md b/How-to/Python/Logging.md
index 4d05607..67e9a77 100644
--- a/How-to/Python/Logging.md
+++ b/How-to/Python/Logging.md
@@ -17,7 +17,8 @@ Logging is useful, because all python code can use the same standard, allowing y
     - A log server
     - Maybe a notification should be triggered on CRITICAL errors
 
-> A python [*"module"*](https://docs.python.org/3/tutorial/modules.html) is simply just the name for a .py file
+> A python [*"module"*](https://docs.python.org/3/tutorial/modules.html) is simply just the name for a .py file. 
+> e.g. the file `database_handler.py` is a module called `database_handler`
 
 ```py
 import logging