5 lines
138 B
Python
5 lines
138 B
Python
|
import logging
|
||
|
|
||
|
logging.basicConfig(format="%(asctime)s - %(message)s", datefmt="%d-%b-%y %H:%M:%S")
|
||
|
logger = logging.getLogger(__name__)
|