Browse Source

Demote log level of unhelpful info log (#194).

Dan Helfman 6 years ago
parent
commit
be7887c071
1 changed files with 1 additions and 1 deletions
  1. 1 1
      borgmatic/commands/borgmatic.py

+ 1 - 1
borgmatic/commands/borgmatic.py

@@ -419,7 +419,7 @@ def collect_configuration_run_summary_logs(config_filenames, args):
     # Parse and load each configuration file.
     for config_filename in config_filenames:
         try:
-            logger.info('{}: Parsing configuration file'.format(config_filename))
+            logger.debug('{}: Parsing configuration file'.format(config_filename))
             configs[config_filename] = validate.parse_configuration(
                 config_filename, validate.schema_filename()
             )