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