Skip to content
Snippets Groups Projects
Commit 36a63b22 authored by Filippo Cremonese's avatar Filippo Cremonese
Browse files

Set default loglevel to INFO

parent 8facfdde
No related branches found
No related tags found
No related merge requests found
......@@ -6,8 +6,7 @@ from orchestra.cmds import install_subcommands
from orchestra.model.configuration import Configuration
parser = argparse.ArgumentParser()
# TODO: set default loglevel to INFO or WARNING
parser.add_argument("--loglevel", "-v", default="DEBUG", choices=["DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL"])
parser.add_argument("--loglevel", "-v", default="INFO", choices=["DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL"])
parser.add_argument("--pretend", "-n", action="store_true", help="Do not execute actions, only print what would be done")
parser.add_argument("--quiet", "-q", action="store_true", help="Do not show output of executed commands")
parser.add_argument("--no-config-cache", action="store_true", help="Do not cache generated yaml configuration")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment