From a7e39520a7d490adc3ed07e1ec27f64dbcd465b1 Mon Sep 17 00:00:00 2001 From: Groupr Date: Thu, 27 Nov 2025 16:14:01 +0000 Subject: [PATCH] Update file notify.py --- remarkbox/lib/notify.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/remarkbox/lib/notify.py b/remarkbox/lib/notify.py index 751f91b..bf53d43 100644 --- a/remarkbox/lib/notify.py +++ b/remarkbox/lib/notify.py @@ -229,8 +229,8 @@ def send_immediate_notifications(request, notifications): }, ) log.info( - "notification frequency=immediately email={}, count={}".format( - notification.user.email, + "notification frequency=immediately username={}, count={}".format( + notification.user.name, notification.id, ) ) @@ -285,9 +285,9 @@ def send_digest_notifications(request, notification_dict, frequency="daily"): }, ) log.info( - "notification frequency={} email={}, count={}".format( + "notification frequency={} username={}, count={}".format( frequency, - recipient_email, + user.name, notifications_count, ) )