docbow: log at warning level when unable to timestamp

This commit is contained in:
Benjamin Dauvergne 2013-10-16 18:54:20 +02:00
parent 8725c9b08b
commit 8b13a688cd
1 changed files with 1 additions and 1 deletions

View File

@ -306,7 +306,7 @@ class Document(Model):
try:
self.timestamp(to=to)
except timestamp.TimestampingError, e:
django_journal.record('error', 'unable to timestamp {document}: '
django_journal.record('warning', 'unable to timestamp {document}: '
'{exception}', document=self, exception=str(e))
# Record recipient lists
for mailing_list in self.to_list.all():