From c4c06d3fe24fe77c6f1e52ba6f53319c59ff1f63 Mon Sep 17 00:00:00 2001 From: Michael Schurter Date: Fri, 28 Oct 2016 14:59:48 -0700 Subject: [PATCH] Swap log line classifiers to be consistent --- client/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/client.go b/client/client.go index b5fcaa8f7..6c10d8455 100644 --- a/client/client.go +++ b/client/client.go @@ -1931,7 +1931,7 @@ func (c *Client) consulReaper() { case <-ticker.C: if err := c.consulReaperImpl(); err != nil { if lastok { - c.logger.Printf("[ERR] consul.client: error reaping services in consul: %v", err) + c.logger.Printf("[ERR] client.consul: error reaping services in consul: %v", err) lastok = false } } else {