5 lines
140 B
Python
5 lines
140 B
Python
import logging
|
|
|
|
logging.basicConfig(level=logging.INFO, format="%(asctime)s: %(levelname)s: %(message)s")
|
|
log = logging.getLogger(__name__)
|