diff --git a/config/configuration.go b/config/configuration.go index 450bc50..e7cf8e3 100644 --- a/config/configuration.go +++ b/config/configuration.go @@ -80,10 +80,8 @@ func (c *Config) String() string { typeField := fields.Type().Field(i) if typeField.Name != "PIHolePassword" && typeField.Name != "PIHoleApiToken" { buffer[i] = fmt.Sprintf("%s=%v", typeField.Name, valueField.Interface()) - } else { - if valueField.Len() > 0 { - buffer[i] = fmt.Sprintf("%s=%s", typeField.Name, "*****") - } + } else if valueField.Len() > 0 { + buffer[i] = fmt.Sprintf("%s=%s", typeField.Name, "*****") } } diff --git a/go.mod b/go.mod index 8a6bb30..fc899ad 100644 --- a/go.mod +++ b/go.mod @@ -10,3 +10,19 @@ require ( golang.org/x/net v0.0.0-20200625001655-4c5254603344 golang.org/x/sync v0.0.0-20210220032951-036812b2e83c ) + +require ( + github.com/beorn7/perks v1.0.1 // indirect + github.com/cespare/xxhash/v2 v2.1.1 // indirect + github.com/davecgh/go-spew v1.1.1 // indirect + github.com/golang/protobuf v1.4.3 // indirect + github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect + github.com/pkg/errors v0.9.1 // indirect + github.com/pmezard/go-difflib v1.0.0 // indirect + github.com/prometheus/client_model v0.2.0 // indirect + github.com/prometheus/common v0.26.0 // indirect + github.com/prometheus/procfs v0.6.0 // indirect + golang.org/x/sys v0.0.0-20210603081109-ebe580a85c40 // indirect + google.golang.org/protobuf v1.26.0-rc.1 // indirect + gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect +)