push notifications: Tweak text for push notification message.

The previous content made it sound like we were actually sending a
push notification, which could be confusing/alarming in some cases
(see e.g. 9c224ccdd3).  Instead, we make
clear that we're sending it to all clients (which one might correctly
suspect is vacuous in the development environment).
This commit is contained in:
Tim Abbott
2018-11-27 09:51:35 -08:00
parent 9c224ccdd3
commit 10e8e2acac

View File

@@ -671,7 +671,7 @@ def handle_push_notification(user_profile_id: int, missed_message: Dict[str, Any
apns_payload = get_apns_payload(user_profile, message)
gcm_payload = get_gcm_payload(user_profile, message)
logger.info("Sending push notification to user %s" % (user_profile_id,))
logger.info("Sending push notifications to mobile clients for user %s" % (user_profile_id,))
if uses_notification_bouncer():
try: