From 8c6445183ceccae93024edc6a2f5081e541e7a1d Mon Sep 17 00:00:00 2001 From: Kegan Dougal Date: Fri, 2 Sep 2016 13:23:31 +0100 Subject: [PATCH] Warn rather than Error --- .../matrix-org/go-neb/services/github/github_webhook.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/github.com/matrix-org/go-neb/services/github/github_webhook.go b/src/github.com/matrix-org/go-neb/services/github/github_webhook.go index 1cddd57..4feeac2 100644 --- a/src/github.com/matrix-org/go-neb/services/github/github_webhook.go +++ b/src/github.com/matrix-org/go-neb/services/github/github_webhook.go @@ -189,7 +189,7 @@ func (s *githubWebhookService) PostRegister(oldService types.Service) { log.WithFields(log.Fields{ log.ErrorKey: err, "repo": r, - }).Error("Failed to remove webhook") + }).Warn("Failed to remove webhook") } } }