Make log output less spammy
This commit is contained in:
parent
99cfea6d62
commit
2d250ef008
1 changed files with 2 additions and 2 deletions
|
@ -86,11 +86,11 @@ def update_product_pricings(src):
|
|||
try:
|
||||
prod_info = find_product_details(product)
|
||||
except NoAutoUpdate:
|
||||
logging.debug('no auto update: %s', product)
|
||||
logging.debug('no auto update: "%s"', product.description)
|
||||
lines_out.append(line)
|
||||
continue
|
||||
except Exception as err:
|
||||
logging.error('did not update %s: %s', product, err)
|
||||
logging.error('did not update "%s": %s', product.description, err)
|
||||
lines_out.append(line)
|
||||
continue
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue