mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
use log.Fatal() instead of panic() in example client and server
This commit is contained in:
parent
59c2c34dbc
commit
2ba4617463
2 changed files with 5 additions and 4 deletions
|
@ -85,7 +85,7 @@ var _ http.Handler = &tracingHandler{}
|
|||
func (h *tracingHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
||||
h.handler.ServeHTTP(w, r)
|
||||
if err := exportTraces(); err != nil {
|
||||
panic(err)
|
||||
log.Fatal(err)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue