Disable logging during commands discovery

This commit is contained in:
Fabien Meghazi 2014-05-21 15:53:16 +02:00
parent eb7f96efbb
commit df35de22b8
1 changed files with 2 additions and 0 deletions

View File

@ -47,6 +47,7 @@ def main():
# Subcommand discovery
if len(args) and not args[0].startswith("-"):
logging.disable(logging.CRITICAL)
for m in module.get_modules():
m = 'openerp.addons.' + m
__import__(m)
@ -54,6 +55,7 @@ def main():
#except Exception, e:
# raise
# print e
logging.disable(logging.NOTSET)
command = args[0]
args = args[1:]