Browse Source

Fix warning

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

+ 1
- 1
httplistener/github.go View File

@@ -35,7 +35,7 @@ func (hl *HTTPListener) githubHandler(w http.ResponseWriter, request *http.Reque
35 35
 
36 36
 	if err != nil {
37 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
+		log.Warningf("Error parsing github webhook: %s", err)
39 39
 		return
40 40
 	}
41 41
 

Loading…
Cancel
Save