From 4f000278994ec47546ee786f806bdf538e8b3fc9 Mon Sep 17 00:00:00 2001 From: Manuel Kaufmann Date: Thu, 18 Oct 2018 16:34:28 +0200 Subject: [PATCH] Do not log as error a webhook with an invalid branch name --- readthedocs/core/views/hooks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readthedocs/core/views/hooks.py b/readthedocs/core/views/hooks.py index c788d6a2e7b..f3630bf0f13 100644 --- a/readthedocs/core/views/hooks.py +++ b/readthedocs/core/views/hooks.py @@ -310,7 +310,7 @@ def bitbucket_build(request): return _build_url(search_url, projects, branches) if not branches: - log.error( + log.info( 'Commit/branch not found url=%s branches=%s', search_url, branches,