File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,12 @@ import (
21
21
"errors"
22
22
"flag"
23
23
"fmt"
24
+ "net/http"
25
+ "os"
26
+ "strconv"
27
+ "strings"
28
+ "text/template"
29
+
24
30
log "github.com/Sirupsen/logrus"
25
31
crv1 "github.com/crunchydata/postgres-operator/apis/cr/v1"
26
32
"github.com/crunchydata/postgres-operator/config"
@@ -30,11 +36,6 @@ import (
30
36
"k8s.io/client-go/kubernetes"
31
37
"k8s.io/client-go/rest"
32
38
"k8s.io/client-go/tools/clientcmd"
33
- "net/http"
34
- "os"
35
- "strconv"
36
- "strings"
37
- "text/template"
38
39
)
39
40
40
41
const lspvcTemplatePath = "/pgo-config/pgo.lspvc-template.json"
@@ -252,7 +253,7 @@ func getCredentials() {
252
253
creds := parseUserMap (v )
253
254
Credentials [creds .Username ] = creds
254
255
}
255
- log .Infof ("pgouser has %v" , Credentials )
256
+ log .Debugf ("pgouser has %v" , Credentials )
256
257
257
258
}
258
259
You can’t perform that action at this time.
0 commit comments