Skip to content
This repository was archived by the owner on Aug 21, 2023. It is now read-only.

Commit f6a9731

Browse files
authored
Merge pull request #46 from djw8605/fix-45
Change log lvl of failure to download namespace to debug
2 parents e022b90 + 34b5a5a commit f6a9731

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

namespaces.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ func GetNamespaces() ([]Namespace, error) {
112112
// Try downloading the namespaces, if it fails, use the embedded namespaces
113113
namespacesFromUrl, err := downloadNamespace()
114114
if err != nil {
115-
log.Warningf("Failed to download namespaces: %s", err)
115+
log.Debugf("Failed to download namespaces: %s, continueing using built-in namespace configuration", err)
116116
} else {
117117
namespacesJson = namespacesFromUrl
118118
}

0 commit comments

Comments
 (0)