config: use the in-house logger
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
leo 2023-05-01 23:09:36 +02:00
parent 593454d616
commit a053103000
Signed by: wanderer
SSH Key Fingerprint: SHA256:Dp8+iwKHSlrMEHzE3bJnPng70I7LEsa3IJXRH/U+idQ

@ -1,8 +1,7 @@
package config
import (
"log"
"git.dotya.ml/mirre-mt/pcmt/slogging"
"github.com/philandstuff/dhall-golang/v6"
)
@ -23,7 +22,7 @@ func LoadConfig(path string) (*Config, error) {
return nil, err
}
log.Printf("parsed config: %+v", &config)
slogging.GetLogger().Debugf("parsed config: %+v", config)
return &config, nil
}