mirror of
https://github.com/budtmo/docker-android.git
synced 2026-01-25 14:27:19 +00:00
10 lines
145 B
Python
10 lines
145 B
Python
import logging
|
|
import logging.config
|
|
|
|
from src import LOGGING_FILE
|
|
|
|
|
|
def init():
|
|
"""Init log."""
|
|
logging.config.fileConfig(LOGGING_FILE)
|