Clarifying descriptions as suggested in PR review

This commit is contained in:
Drayton Munster 2022-03-25 22:25:16 -04:00
parent 3903ed000c
commit bc1545c717
4 changed files with 7 additions and 6 deletions

2
mux.go
View file

@ -67,7 +67,7 @@ func NewHandler(server *Server) (http.Handler, error) {
if err != nil {
return nil, fmt.Errorf("cannot load %s (use --no-auth to disable): %v", server.HtpasswdPath, err)
}
log.Printf("Loaded htpasswd file: %s", server.HtpasswdPath)
log.Printf("Loaded htpasswd file %s", server.HtpasswdPath)
}
const GiB = 1024 * 1024 * 1024