reduce log level of messages from chrome, since it spews stuff that looks bad but usually isn't

This commit is contained in:
Noah Levitt 2016-07-27 18:48:13 -05:00
parent 041a4970ce
commit dd2d8c89e3
2 changed files with 3 additions and 3 deletions

View File

@ -643,7 +643,7 @@ class Chrome:
brozzler.TRACE, "chrome pid %s STDOUT %s", brozzler.TRACE, "chrome pid %s STDOUT %s",
self.chrome_process.pid, buf) self.chrome_process.pid, buf)
else: else:
logging.info( logging.debug(
"chrome pid %s STDOUT %s", "chrome pid %s STDOUT %s",
self.chrome_process.pid, buf) self.chrome_process.pid, buf)
@ -658,7 +658,7 @@ class Chrome:
brozzler.TRACE, "chrome pid %s STDOUT %s", brozzler.TRACE, "chrome pid %s STDOUT %s",
self.chrome_process.pid, buf) self.chrome_process.pid, buf)
else: else:
logging.info( logging.debug(
"chrome pid %s STDERR %s", "chrome pid %s STDERR %s",
self.chrome_process.pid, buf) self.chrome_process.pid, buf)
except: except:

View File

@ -21,7 +21,7 @@ import setuptools
setuptools.setup( setuptools.setup(
name='brozzler', name='brozzler',
version='1.1b4.dev59', version='1.1b4.dev60',
description='Distributed web crawling with browsers', description='Distributed web crawling with browsers',
url='https://github.com/internetarchive/brozzler', url='https://github.com/internetarchive/brozzler',
author='Noah Levitt', author='Noah Levitt',