Reduce verbosity in the default log level

parent 74a4845e
......@@ -123,7 +123,7 @@ def main():
"Otherwise hdlmake doesn't know how to simulate the project")
quit()
tool_name = top_mod.sim_tool
logging.info('import tool module: ' + tool_name)
logging.debug('import tool module: ' + tool_name)
try:
tool_module = importlib.import_module("hdlmake.tools.%s.%s" % (tool_name, tool_name))
except Exception as e:
......
......@@ -295,7 +295,7 @@ class ConfigParser(object):
continue # finish processing of this variable here
else:
ret[opt_name] = val
logging.warning("New custom variable found: %s (=%s).\n" % (opt_name, val))
logging.debug("New custom variable found: %s (=%s).\n" % (opt_name, val))
continue
opt = self[opt_name]
if type(val) not in opt.types:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment