fix: indicate successful handoff in log

This commit is contained in:
2024-07-06 16:37:33 +02:00
parent 4fa83afe16
commit 7479499f78

View File

@@ -23,3 +23,5 @@ def send_notification(app, target_user, mapname, old_replay, new_replay):
if not r.ok: if not r.ok:
msg = "Error handing off notification to dispatch ({} {})".format(r.status_code, r.content) msg = "Error handing off notification to dispatch ({} {})".format(r.status_code, r.content)
print(msg, file=sys.stderr) print(msg, file=sys.stderr)
else:
print("Handed off notification for {} to dispatch".format(target_user), file=sys.stderr)