From c0d75ef0a5e3eb8d1a569c398a067e7aaaeb3767 Mon Sep 17 00:00:00 2001 From: Vishal Choudhary Date: Mon, 7 Oct 2024 20:55:06 +0530 Subject: [PATCH] fix remove db config from postgres startup log (#212) Signed-off-by: Vishal Choudhary --- pkg/storage/db/new.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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())