diff --git a/cli/packages/util/check-for-update.go b/cli/packages/util/check-for-update.go index 87832a9cea..2f283070c5 100644 --- a/cli/packages/util/check-for-update.go +++ b/cli/packages/util/check-for-update.go @@ -4,6 +4,7 @@ import ( "encoding/json" "errors" "fmt" + log "github.com/sirupsen/logrus" "io" "net/http" "os" @@ -19,6 +20,7 @@ func CheckForUpdate() { } latestVersion, err := getLatestTag("Infisical", "infisical") if err != nil { + log.Debug(err) // do nothing and continue return }