→ logging/

This commit is contained in:
neingeist 2020-01-10 14:53:56 +01:00
parent f87c49e6db
commit c8e9042081

4
logging/logging-test.py Normal file
View file

@ -0,0 +1,4 @@
import logging
logging.basicConfig(level=logging.DEBUG, filename='logging-test.log')
logging.info('this should go to the log file')