From 39b1de33207274c19c942917cf932f6cdff634c7 Mon Sep 17 00:00:00 2001
From: Philipp Heckel <pheckel@datto.com>
Date: Thu, 2 Jun 2022 14:38:38 -0400
Subject: [PATCH] Fix log

---
 client/client.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/client/client.go b/client/client.go
index 242df4f..8b05a39 100644
--- a/client/client.go
+++ b/client/client.go
@@ -233,7 +233,7 @@ func handleSubscribeConnLoop(ctx context.Context, msgChan chan *Message, topicUR
 		}
 		select {
 		case <-ctx.Done():
-			log.Info("Connection exited", util.ShortTopicURL(topicURL))
+			log.Info("%s Connection exited", util.ShortTopicURL(topicURL))
 			return
 		case <-time.After(10 * time.Second): // TODO Add incremental backoff
 		}
-- 
GitLab