From 92e7c8bc89d38e7145563614af5669ef529e8b7a Mon Sep 17 00:00:00 2001 From: "Martin A. Brown" Date: Fri, 4 Mar 2016 07:58:03 -0800 Subject: [PATCH] lowering verbosity on reporting tool/data detection --- tldp/doctypes/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tldp/doctypes/common.py b/tldp/doctypes/common.py index 8a7e0d3..9431706 100644 --- a/tldp/doctypes/common.py +++ b/tldp/doctypes/common.py @@ -92,7 +92,7 @@ class BaseDoctype(object): classname = self.__class__.__name__ for tool, validator in self.required.items(): thing = getattr(self.config, tool, None) - logger.info("%s, tool = %s, thing = %s", classname, tool, thing) + logger.debug("%s, tool = %s, thing = %s", classname, tool, thing) if thing is None: logger.error("%s missing required tool %s, skipping...", classname, tool)