Skip to content
Merged
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
4 changes: 2 additions & 2 deletions apps/nsq_tail/nsq_tail.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ func init() {
}

type TailHandler struct {
topicName string
topicName string
totalMessages int
messagesShown int
}
Expand Down Expand Up @@ -107,7 +107,7 @@ func main() {

consumers := []*nsq.Consumer{}
for i := 0; i < len(topics); i += 1 {
fmt.Printf("Adding consumer for topic: %s\n", topics[i])
log.Printf("Adding consumer for topic: %s\n", topics[i])

consumer, err := nsq.NewConsumer(topics[i], *channel, cfg)
if err != nil {
Expand Down