diff options
Diffstat (limited to 'How-to/Python')
| -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 |
