Skip to content

Commit

Permalink
- Improve error messages
Browse files Browse the repository at this point in the history
Signed-off-by: Valery Piashchynski <piashchynski.valery@gmail.com>
  • Loading branch information
rustatian committed Jun 20, 2021
1 parent 2dd3015 commit 18c072d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/redis/pubsub.go
Expand Up @@ -116,7 +116,7 @@ func (p *PubSubDriver) Subscribe(connectionID string, topics ...string) error {
return err
}
if res == 0 {
p.log.Warn("could not subscribe to the provided topic", "connectionID", connectionID, "topic", topics[i])
p.log.Warn("could not subscribe to the provided topic, you might be already subscribed to it", "connectionID", connectionID, "topic", topics[i])
continue
}
}
Expand Down

0 comments on commit 18c072d

Please sign in to comment.