[IMP] tests log phantom to info the default loglevel of runbot

bzr revid: al@openerp.com-20140316195252-i6wr3scp0zmx92zu
This commit is contained in:
Antony Lesuisse 2014-03-16 20:52:52 +01:00
parent ddf66c0621
commit 97a097dbab
1 changed files with 3 additions and 3 deletions

View File

@ -228,7 +228,7 @@ class HttpCase(TransactionCase):
line = str(line)
# relay everything from console.log, even 'ok' or 'error...' lines
_logger.debug("phantomjs: %s", line)
_logger.info("phantomjs: %s", line)
if line == "ok":
break
@ -242,7 +242,7 @@ class HttpCase(TransactionCase):
self.fail(line_ or "phantomjs test failed")
def phantom_run(self, cmd, timeout):
_logger.debug('phantom_run executing %s', ' '.join(cmd))
_logger.info('phantom_run executing %s', ' '.join(cmd))
try:
phantom = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
except OSError:
@ -253,7 +253,7 @@ class HttpCase(TransactionCase):
# kill phantomjs if phantom.exit() wasn't called in the test
if phantom.poll() is None:
phantom.terminate()
_logger.debug("phantom_run execution finished")
_logger.info("phantom_run execution finished")
def phantom_jsfile(self, jsfile, timeout=30, **kw):
options = {