Spaces:
Running
on
Zero
Running
on
Zero
File size: 279 Bytes
5978ae3 |
1 2 3 4 5 6 7 |
import logging
FORMAT = "%(asctime)s: %(levelname)s: %(message)s"
logging.basicConfig(filename='logs.log', level=logging.INFO, format=FORMAT)
STDERRLOGGER = logging.StreamHandler()
STDERRLOGGER.setFormatter(logging.Formatter(FORMAT))
logging.getLogger().addHandler(STDERRLOGGER) |