summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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