Skip to content

Commit 297a8cd

Browse files
author
Jeff McCormick
committed
update to fix log msgs
1 parent fb305a0 commit 297a8cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

util/util.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ func PatchClusterCRD(restclient *rest.RESTClient, labelMap map[string]string, ol
279279
// RunPsql runs a psql statement
280280
func RunPsql(password string, hostip string, sqlstring string) {
281281

282-
log.Infoln("RunPsql password [" + password + "] hostip=[" + hostip + "] sql=[" + sqlstring + "]")
282+
log.Debug("RunPsql password [" + password + "] hostip=[" + hostip + "] sql=[" + sqlstring + "]")
283283
cmd := exec.Command("runpsql.sh", password, hostip)
284284

285285
cmd.Stdin = strings.NewReader(sqlstring)

0 commit comments

Comments
 (0)