ensure http always has a logger
1 file changed, 1 insertion(+), 1 deletion(-)
changed files
M domain/content/publisher/app.go → domain/content/publisher/app.go
@@ -56,7 +56,7 @@ if err != nil { return nil, fault.Wrap(err, fmsg.With("invalid base URL")) } - mux := ihttp.NewServeMux() + mux := ihttp.NewServeMux(log.Named("http")) mux.HandleFunc("/", app.WithUserContext(app.Index)) mux.HandleFunc("/style.css", app.Style)