diff --git a/cf_remote/log.py b/cf_remote/log.py index f63ea1e..d0ecdfb 100644 --- a/cf_remote/log.py +++ b/cf_remote/log.py @@ -1,4 +1,11 @@ -levels = {"CRITICAL": 50, "ERROR": 40, "WARNING": 30, "INFO": 20, "DEBUG": 10} +levels = { + "NONE": 60, + "CRITICAL": 50, + "ERROR": 40, + "WARNING": 30, + "INFO": 20, + "DEBUG": 10, +} level = levels["WARNING"] diff --git a/cf_remote/main.py b/cf_remote/main.py index eb9b231..187e4c9 100644 --- a/cf_remote/main.py +++ b/cf_remote/main.py @@ -34,7 +34,7 @@ def _get_arg_parser(): ap.add_argument( "--log-level", - help="Specify level of logging: DEBUG, INFO, WARNING, ERROR, or CRITICAL", + help="Specify level of logging: NONE, DEBUG, INFO, WARNING, ERROR, or CRITICAL", type=str, default="WARNING", )