quiet down the logging

This commit is contained in:
Noah Levitt 2017-12-15 15:57:36 -08:00
parent df6615cc2c
commit 7ff99266ea
2 changed files with 2 additions and 2 deletions

View File

@ -367,7 +367,7 @@ class RethinkDbFrontier:
l = list(pages.values())
for batch in (l[i:i+50] for i in range(0, len(l), 50)):
try:
self.logger.info(
self.logger.debug(
'inserting/replacing batch of %s pages', len(batch))
result = self.rr.table('pages').insert(
batch, conflict='replace').run()

View File

@ -32,7 +32,7 @@ def find_package_data(package):
setuptools.setup(
name='brozzler',
version='1.1b12.dev271',
version='1.1b12.dev272',
description='Distributed web crawling with browsers',
url='https://github.com/internetarchive/brozzler',
author='Noah Levitt',