mirror of https://gitlab.com/akasroua/covot
6 lines
127 B
Python
6 lines
127 B
Python
|
import logging
|
||
|
|
||
|
logging.basicConfig(
|
||
|
format="[%(levelname) 5s/%(asctime)s] %(name)s: %(message)s", level=logging.WARNING
|
||
|
)
|