From 0c649fbcc3514502d80e1a4341d1a28213c8bd54 Mon Sep 17 00:00:00 2001 From: checktheroads Date: Sat, 12 Oct 2019 23:44:39 -0700 Subject: [PATCH] change command log to debug --- hyperglass/configuration/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hyperglass/configuration/__init__.py b/hyperglass/configuration/__init__.py index b98bde6..f25fb7e 100644 --- a/hyperglass/configuration/__init__.py +++ b/hyperglass/configuration/__init__.py @@ -35,10 +35,10 @@ except FileNotFoundError as no_config_error: try: with open(working_dir.joinpath("commands.yaml")) as commands_yaml: user_commands = yaml.safe_load(commands_yaml) - log.info(f"Found commands: {user_commands}") + log.debug(f"Found commands: {user_commands}") except FileNotFoundError: user_commands = None - log.info( + log.debug( ( f'No commands found in {working_dir.joinpath("commands.yaml")}. ' "Defaults will be used."