diff options
author | Valery Piashchynski <[email protected]> | 2021-06-20 17:17:10 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2021-06-20 17:17:10 +0300 |
commit | 18c072d5dbe3ca96fe2198f323d3bf520972e80f (patch) | |
tree | 326930ca65c2768db5ad85ffc9ef753bb404603a | |
parent | 2dd30155de6faaf6005027d5337a840310c827f9 (diff) |
- Improve error messages
Signed-off-by: Valery Piashchynski <[email protected]>
-rw-r--r-- | plugins/redis/pubsub.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/redis/pubsub.go b/plugins/redis/pubsub.go index 6ab281f3..7253511d 100644 --- a/plugins/redis/pubsub.go +++ b/plugins/redis/pubsub.go @@ -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 } } |