Skip to content

Commit

Permalink
Fix output of stderr
Browse files Browse the repository at this point in the history
  • Loading branch information
beefsack committed Aug 25, 2020
1 parent e4f1896 commit 82bb829
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ func (s *Server) ServeHTTP(w http.ResponseWriter, r *http.Request) {
return
}
if len(stderr) > 0 {
log.Println(stderr)
log.Print(string(stderr))
}
}()

Expand Down

0 comments on commit 82bb829

Please sign in to comment.