Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion main.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package main


import (
"crypto/tls"
"encoding/json"
Expand Down Expand Up @@ -52,7 +53,7 @@ func worker(input <-chan notification, cert tls.Certificate, topic string, produ
// loop on the channel and send when something
// is ready to send
for messageParts := range input {
log.Println("Sending message to: ", messageParts.token)
log.Println("Sending message to this user: ", messageParts.token)

payload := NewPayload()

Expand Down