mirror of https://github.com/ekimekim/wubloader
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
350 B
Python
17 lines
350 B
Python
|
|
import gevent.monkey
|
|
gevent.monkey.patch_all()
|
|
|
|
import logging
|
|
import os
|
|
|
|
import argh
|
|
|
|
from cutter.main import main
|
|
|
|
LOG_FORMAT = "[%(asctime)s] %(levelname)8s %(name)s(%(module)s:%(lineno)d): %(message)s"
|
|
|
|
level = os.environ.get('WUBLOADER_LOG_LEVEL', 'INFO').upper()
|
|
logging.basicConfig(level=level, format=LOG_FORMAT)
|
|
argh.dispatch_command(main)
|