1
0
Fork 0
mirror of https://github.com/yavook/kiwi-scp.git synced 2024-11-22 12:53:00 +00:00
kiwi-scp/kiwi_scp/scripts/kiwi.py

34 lines
864 B
Python
Raw Normal View History

import logging
2021-12-02 16:06:13 +00:00
import click
from kiwi_scp.commands.cli import KiwiCLI
2020-08-04 14:52:30 +00:00
2021-12-02 16:06:13 +00:00
@click.command(cls=KiwiCLI)
def main():
"""kiwi is the simple tool for managing container servers."""
verbosity = 0
2020-08-13 08:48:01 +00:00
2020-08-10 12:39:28 +00:00
if verbosity >= 2:
log_level = logging.DEBUG
log_format = "[%(asctime)s] %(levelname)s @ %(filename)s:%(funcName)s:%(lineno)d: %(message)s"
elif verbosity >= 1:
log_level = logging.INFO
log_format = "[%(asctime)s] %(levelname)s: %(message)s"
else:
log_level = logging.WARNING
log_format = "%(levelname)s: %(message)s"
2020-08-13 08:48:01 +00:00
# add a new handler (needed to set the level)
2020-08-10 12:39:28 +00:00
log_handler = logging.StreamHandler()
logging.getLogger().addHandler(log_handler)
2020-08-11 10:08:03 +00:00
2021-12-02 16:06:13 +00:00
logging.getLogger().setLevel(log_level)
log_handler.setFormatter(logging.Formatter(log_format))
2020-08-04 14:52:30 +00:00
if __name__ == "__main__":
main()