use log.Fatal() instead of panic() in example client and server

This commit is contained in:
Marten Seemann 2020-01-08 15:15:52 +07:00
parent 59c2c34dbc
commit 2ba4617463
2 changed files with 5 additions and 4 deletions

View file

@ -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)
}
}