PR-1013 - PMM-11406 Better check to prevent errors from missing fields

- Fixed log.Infof call on line 211
This commit is contained in:
Sveta Smirnova
2025-09-09 16:57:02 +03:00
parent b2e25133e0
commit b07dd2792d

View File

@@ -208,7 +208,7 @@ func main() {
if err != nil {
log.Infof("cannot check version updates: %s", err.Error())
} else if advice != "" {
log.Infof(advice)
log.Infof("%s", advice)
}
}