Skip to content

Commit

Permalink
move logging to stderr so it'll show in linux logs
Browse files Browse the repository at this point in the history
  • Loading branch information
ntbosscher committed Nov 3, 2020
1 parent cf9f56b commit 8f859cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integrations/github/githubcd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
)

var Verbose = false
var logger = log.New(os.Stdout, "gobase-githubcd: ", log.Ldate|log.Ltime)
var logger = log.New(os.Stderr, "gobase-githubcd: ", log.Ldate|log.Ltime)

type Handler struct {
secret string
Expand Down

0 comments on commit 8f859cc

Please # to comment.