feature/ISEPOS-2280-mechanizm-raportowania-informacji-z-aplikacji-do-pliku-z-logami #1

Merged
Showing only changes of commit 68e32149cc - Show all commits

View File

@ -42,6 +42,10 @@ def getDefaultLogger(name):
--------
logger = getDefaultLogger(__name__)
logger.info("This is an info message.")
try:
raise Exception('Exception for example.')
except Exception as e:
logger.error('An error occurred:', exc_info=True) # Log with stack trace
"""
logger = logging.getLogger(name)