diff options
| author | user <user@node5.net> | 2024-03-17 15:37:53 +0100 |
|---|---|---|
| committer | user <user@node5.net> | 2024-03-17 15:37:53 +0100 |
| commit | 026ed71b0bcef9cd17a3358aa3e9684d8c16a3da (patch) | |
| tree | a279c3b37a15f74f705a19d6d5d5f34579d6ce4d | |
| parent | c0cfc6cbb35b8b3d0d13849c381b398ba4c565b2 (diff) | |
logging - add definition read more links
| -rw-r--r-- | How-to/Python/Logging.md | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/How-to/Python/Logging.md b/How-to/Python/Logging.md index 6297819..d11f116 100644 --- a/How-to/Python/Logging.md +++ b/How-to/Python/Logging.md @@ -12,11 +12,12 @@ Logging is useful, because all python code can use the same standard, allowing y - How to format them - Do you wish to see which module and line of code this message originated from - Where they should end up - - Printed to STDOUT (terminal) + - Printed to [STDOUT](https://en.wikipedia.org/wiki/Standard_streams) (terminal) - A log file - A log server + - Maybe a notification should be triggered on CRITICAL errors -> A python *"module"* 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 ```py import logging |
