Skip to content

Commit a258323

Browse files
committed
Change the default --log-level to warning
Update the default value of the "--log-level" flag to "warning".
1 parent a0f36dc commit a258323

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

salt_lsp/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def add_arguments(parser):
4747
"--log-level",
4848
choices=list(LOG_LEVEL_DICT.keys())
4949
+ list(map(lambda level: level.upper(), LOG_LEVEL_DICT.keys())),
50-
default=["debug"],
50+
default=["warning"],
5151
nargs=1,
5252
help="Logging verbosity",
5353
)

0 commit comments

Comments
 (0)