From 34cad4601d169c725a0cc296dd584630c93f3e48 Mon Sep 17 00:00:00 2001 From: Felix Kunde Date: Mon, 21 Feb 2022 17:08:36 +0100 Subject: [PATCH] fix warning formatting --- pkg/cluster/streams.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cluster/streams.go b/pkg/cluster/streams.go index a6d498d83..a1a1b4d4a 100644 --- a/pkg/cluster/streams.go +++ b/pkg/cluster/streams.go @@ -316,7 +316,7 @@ func (c *Cluster) syncStreams() error { dbName := slots[publication]["database"] err = c.syncPublication(publication, dbName, tables) if err != nil { - c.logger.Warningf("could not sync publication %q in database %d: %v", publication, dbName, err) + c.logger.Warningf("could not sync publication %q in database %q: %v", publication, dbName, err) } }