diff --git a/pkg/storage/db/new.go b/pkg/storage/db/new.go index ff0fc64..cd0aa96 100644 --- a/pkg/storage/db/new.go +++ b/pkg/storage/db/new.go @@ -17,7 +17,7 @@ const ( ) func New(config *PostgresConfig) (api.Storage, error) { - klog.Infof("starting postgres db, config: %s", config.String()) + klog.Infof("starting postgres db") db, err := sql.Open("postgres", config.String()) if err != nil { klog.Error("failed to open db", err.Error())