Niko
Results
11
comments of
Niko
I ended up putting this in my handler: ```go defer func() { if r := recover(); r != nil { log.Errorf("Recovered from panic: %v", r) } }() ``` it doesn't...