diff options
| author | user <user@node5.net> | 2024-03-17 16:01:16 +0100 |
|---|---|---|
| committer | user <user@node5.net> | 2024-03-17 16:01:16 +0100 |
| commit | b0d5cc65e57b6679260beb828fd5a6c17844ea38 (patch) | |
| tree | 044e6e4f2f7060dafd4e63c1f5fc1d0a0b8953dd | |
| parent | d28c293258650ca6f71d4f597b34f338cf57d9c9 (diff) | |
logging - add example to module definition
| -rw-r--r-- | How-to/Python/Logging.md | 3 |
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 |
