From 503a1b8a6e8a71aabb472ddedcc67191bc6be7ba Mon Sep 17 00:00:00 2001 From: David Lawrence Date: Thu, 23 Jul 2015 14:24:46 -0700 Subject: [PATCH] change error log to debug Signed-off-by: David Lawrence (github: endophage) --- client/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/client.go b/client/client.go index f4911871b8..6c8e3a8aa9 100644 --- a/client/client.go +++ b/client/client.go @@ -323,7 +323,7 @@ func (r *NotaryRepository) Publish() error { // Repo hasn't been initialized, It must be initialized before // it can be published. Return an error and let caller determine // what it wants to do. - logrus.Error(err.Error()) + logrus.Debug(err.Error()) logrus.Debug("Repository not initialized during Publish") return &ErrRepoNotInitialized{} }