Browse Source

Downgrade error to warning

tags/v0.3.2
Russ Garrett 5 years ago
parent
commit
b28a3238fd
No account linked to committer's email address
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      httplistener/github.go

+ 2
- 1
httplistener/github.go View File

34
 		github.PullRequestEvent)
34
 		github.PullRequestEvent)
35
 
35
 
36
 	if err != nil {
36
 	if err != nil {
37
-		log.Errorf("Error parsing github webhook: %s", err)
37
+		// This usually happens because we've received an event we don't need to handle.
38
+		log.Warnf("Error parsing github webhook: %s", err)
38
 		return
39
 		return
39
 	}
40
 	}
40
 
41
 

Loading…
Cancel
Save