8 lines
198 B
Python
8 lines
198 B
Python
|
import logging
|
||
|
|
||
|
###### Logger ######
|
||
|
format = "%(asctime)s: %(message)s"
|
||
|
logging.basicConfig(format=format, level=logging.INFO, datefmt="%Y-%m-%d %H:%M:%S")
|
||
|
|
||
|
logger = logging.getLogger("tokopedia")
|