Skip to content

Commit

Permalink
A little more debugging.
Browse files Browse the repository at this point in the history
  • Loading branch information
ralphbean committed Apr 8, 2014
1 parent 21a08f0 commit 945099b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion bugwarrior/db.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,10 +109,12 @@ def tasks_differ(left, right):
else:
if six.text_type(left.get(k)) != six.text_type(right.get(k)):
log.name('db').debug(
(u"%s:%s has changed from '%s' to '%s'." % (
(u"%s:%s has changed from (%r)'%s' to (%r)'%s'." % (
sanitize(left['uuid']),
sanitize(k),
type(left.get(k)),
sanitize(left.get(k)),
type(right.get(k)),
sanitize(right.get(k))
)).encode('utf-8')
)
Expand Down

0 comments on commit 945099b

Please sign in to comment.