[IMP] modules loading: log as INFO test files because, if they are logged as TEST, the loading statement get lost in the mass of real TEST logs in case there are a lot of test files (more visible that way) + there are no reason to special case these files

bzr revid: qdp-launchpad@openerp.com-20130507092422-co9w0qug8k9zw16n
This commit is contained in:
Quentin (OpenERP) 2013-05-07 11:24:22 +02:00
parent 966631d383
commit 0d21c3eba3
1 changed files with 1 additions and 4 deletions

View File

@ -103,10 +103,7 @@ def load_module_graph(cr, graph, status=None, perform_checks=True, skip_modules=
"""
for filename in package.data[kind]:
if kind == 'test':
_logger.log(logging.TEST, "module %s: loading %s", module_name, filename)
else:
_logger.info("module %s: loading %s", module_name, filename)
_logger.info("module %s: loading %s", module_name, filename)
_, ext = os.path.splitext(filename)
pathname = os.path.join(module_name, filename)
fp = tools.file_open(pathname)