コード例 #1
0
ファイル: __init__.py プロジェクト: a0x/lilac
def main():
    dct = docopt(__doc__)
    # set logger level to info
    logger.setLevel(logging.INFO)

    if dct["start"]:
        lilac_daemon.start()
    elif dct["stop"]:
        lilac_daemon.stop()
    elif dct["restart"]:
        lilac_daemon.restart()
    else:
        exit(__doc__)
コード例 #2
0
ファイル: __init__.py プロジェクト: jincheng/lilac
def main():
    dct = docopt(__doc__)
    # set logger level to info
    logger.setLevel(logging.INFO)

    if dct["start"]:
        lilac_daemon.start()
    elif dct["stop"]:
        lilac_daemon.stop()
    elif dct["restart"]:
        lilac_daemon.restart()
    elif dct["status"]:
        lilac_daemon.status()
    else:
        exit(__doc__)
コード例 #3
0
ファイル: __init__.py プロジェクト: jincheng/lilac
 def run(self):
     logger.setLevel(logging.ERROR)
     server.run(True, 8888)
     logger.setLevel(logging.INFO)