From 4783eb3ae9037de32940f575ad222bd114bd9df3 Mon Sep 17 00:00:00 2001 From: bagusandrian Date: Wed, 29 Nov 2023 13:33:26 +0700 Subject: [PATCH] fixing error log --- nsqd/topic.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nsqd/topic.go b/nsqd/topic.go index 089104f96..1b4513ae5 100644 --- a/nsqd/topic.go +++ b/nsqd/topic.go @@ -335,7 +335,7 @@ func (t *Topic) messagePump() { err := channel.PutMessage(chanMsg) if err != nil { t.nsqd.logf(LOG_ERROR, - "TOPIC(%s) ERROR: failed to put msg(%s) to channel(%s) - %s will retry[%d]", + "TOPIC(%s) ERROR: failed to put msg(%s) to channel(%s) - %s", t.name, msg.ID, channel.name, err) if checkRetry >= msg.maxRetryChannel { break