mirror of
https://github.com/budtmo/docker-android.git
synced 2025-12-08 18:25:50 +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)
|