all repos — website @ 09ee2de72936ea0b0edc5d3360ce1c72803a817b

My website

log in logfmt via zap, with nicer console output in dev

Alan Pearce
commit

09ee2de72936ea0b0edc5d3360ce1c72803a817b

parent

4064f933a965f2fb2ce43d3c2d5bd54ccd33978c

1 file changed, 2 insertions(+), 2 deletions(-)

changed files
M internal/config/config.gointernal/config/config.go
@@ -2,8 +2,8 @@ package config
import ( "io/fs" - "log/slog" "net/url" + "website/internal/log" "github.com/BurntSushi/toml" "github.com/pkg/errors"
@@ -47,7 +47,7 @@ }
func GetConfig() (*Config, error) { config := Config{} - slog.Debug("reading config.toml") + log.Debug("reading config.toml") _, err := toml.DecodeFile("config.toml", &config) if err != nil { var pathError *fs.PathError