Skip to content
This repository has been archived by the owner on Dec 16, 2020. It is now read-only.

Commit

Permalink
demote LOG.error("Conflicting insert", extra=extra) to warn
Browse files Browse the repository at this point in the history
  • Loading branch information
agroszer committed Nov 17, 2016
1 parent 24338b7 commit 6ada990
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def alltests():

setup(
name='cipher.session',
version='2.1.1.dev6',
version='2.1.1.dev7',
url="http://pypi.python.org/pypi/cipher.session/",
author='Zope Foundation and Contributors',
author_email='zope-dev@zope.org',
Expand Down
2 changes: 1 addition & 1 deletion src/cipher/session/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def _p_resolveConflict(self, old, committed, new):
# log everything, debugging ConflictResolution is hard
formatExtraData(extra, k=k, v=v, c_new=c_new, result=result,
rdata_k=rdata_k, verror=verror)
LOG.error("Conflicting insert", extra=extra)
LOG.warn("Conflicting insert", extra=extra)
raise ConflictError("Conflicting insert")
if k in result_data:
continue
Expand Down

0 comments on commit 6ada990

Please sign in to comment.