mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-09-18 21:50:56 +00:00
Debugging statement
This commit is contained in:
parent
b64f06c269
commit
6395087ef2
1 changed files with 2 additions and 1 deletions
|
@ -147,7 +147,8 @@ class MUserFeedNotification(mongo.Document):
|
|||
logging.debug("Sent too many, ignoring...")
|
||||
continue
|
||||
if story['story_date'] <= last_notification_date and not force:
|
||||
logging.debug("Story date older than last notification date: %s <= %s" % (story['story_date'], last_notification_date))
|
||||
if settings.DEBUG:
|
||||
logging.debug("Story date older than last notification date: %s <= %s" % (story['story_date'], last_notification_date))
|
||||
continue
|
||||
|
||||
if story['story_date'] > user_feed_notification.last_notification_date:
|
||||
|
|
Loading…
Add table
Reference in a new issue