log in logfmt via zap, with nicer console output in dev
1 file changed, 2 insertions(+), 2 deletions(-)
changed files
M internal/config/config.go → internal/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