web: log error missages on serving

This commit is contained in:
Fabian Reinartz 2017-08-10 14:48:31 +02:00
parent 9516d04472
commit 0af43695de

View file

@ -346,8 +346,16 @@ func (h *Handler) Run(ctx context.Context) error {
ReadTimeout: h.options.ReadTimeout, ReadTimeout: h.options.ReadTimeout,
} }
go httpSrv.Serve(httpl) go func() {
go grpcSrv.Serve(grpcl) if err := httpSrv.Serve(httpl); err != nil {
log.With("err", err).Warnf("error serving HTTP")
}
}()
go func() {
if err := grpcSrv.Serve(grpcl); err != nil {
log.With("err", err).Warnf("error serving HTTP")
}
}()
return m.Serve() return m.Serve()
} }