From c0250f3c8e6e3c3eae273d080cf90bd833a1732e Mon Sep 17 00:00:00 2001
From: Juan Batiz-Benet <juan@benet.ai>
Date: Sun, 5 Oct 2014 14:50:39 -0700
Subject: [PATCH] bump logging to ERROR

---
 util/util.go | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/util/util.go b/util/util.go
index 39b635fdb..1e51064ed 100644
--- a/util/util.go
+++ b/util/util.go
@@ -122,11 +122,9 @@ func SetupLogging() {
 	*/
 	logging.SetFormatter(logging.MustStringFormatter(LogFormat))
 
-	/*
-		for _, n := range loggers {
-			logging.SetLevel(logging.ERROR, n)
-		}
-	*/
+	for _, n := range loggers {
+		logging.SetLevel(logging.ERROR, n)
+	}
 }
 
 // Logger retrieves a particular logger + initializes it at a particular level
-- 
GitLab