Skip to content

Commit 1a3144b

Browse files
committed
Remove error check if DEBUG env var doesn't exist
1 parent 6b674f7 commit 1a3144b

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

bot.go

+1-4
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,7 @@ func main() {
3434
ForceColors: true,
3535
DisableTimestamp: true,
3636
}
37-
debug, err := strconv.ParseBool(os.Getenv("DEBUG"))
38-
if err != nil {
39-
logr.Error(err)
40-
}
37+
debug, _ := strconv.ParseBool(os.Getenv("DEBUG"))
4138
if debug {
4239
logr.AddHook(stack.StandardHook())
4340
logr.SetLevel(logrus.DebugLevel)

0 commit comments

Comments
 (0)