From 026ed71b0bcef9cd17a3358aa3e9684d8c16a3da Mon Sep 17 00:00:00 2001 From: user Date: Sun, 17 Mar 2024 15:37:53 +0100 Subject: logging - add definition read more links --- How-to/Python/Logging.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'How-to/Python/Logging.md') 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 -- cgit 1.4.1