You've already forked docker-android
mirror of
https://github.com/izzy2lost/docker-android.git
synced 2026-03-10 11:37:45 -07: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)
|