Skip to content

Commit ebb19c6

Browse files
committed
Removing prints
1 parent 6cdf8be commit ebb19c6

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

packet/notifications.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@ def packet_signed_notification(packet, signer):
2525
notification.post_body["include_player_ids"] = tokens
2626

2727
onesignal_response = onesignal_client.send_notification(notification)
28-
print(onesignal_response.status_code)
29-
print(onesignal_response.json())
3028
if onesignal_response.status_code == 200:
3129
app.logger.info("The notification ({}) sent out successfully".format(notification.post_body))
3230

@@ -44,7 +42,5 @@ def packet_100_percent_notification(packet):
4442
notification.post_body["include_player_ids"] = tokens
4543

4644
onesignal_response = onesignal_client.send_notification(notification)
47-
print(onesignal_response.status_code)
48-
print(onesignal_response.json())
4945
if onesignal_response.status_code == 200:
5046
app.logger.info("The notification ({}) sent out successfully".format(notification.post_body))

0 commit comments

Comments
 (0)