all repos — homestead @ 5f2f546708cbe89a75131797b9f6d7f274656c43

Code for my website

ensure http always has a logger

Alan Pearce
commit

5f2f546708cbe89a75131797b9f6d7f274656c43

parent

52c7a311770809e20c790078ddf27ea4fa10c77e

1 file changed, 1 insertion(+), 1 deletion(-)

changed files
M domain/content/publisher/app.godomain/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)