diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d4998c17..e4c7ff587 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ |Date |Issue |Description | |----------|------|---------------------------------------------------------------------------------------------------------| +|2021/02/03| |Release 0.20.2 | +|2021/02/03|1140 |Ensure logging doesn't happen at warn level | |2021/02/03| |Release 0.20.1 | |2021/02/03|1140 |Ensure that only client/server connections use no SAN TLS work around, not brokers | |2021/02/03| |Release 0.20.0 | diff --git a/build/build.go b/build/build.go index 51c773e24..5e0670cef 100644 --- a/build/build.go +++ b/build/build.go @@ -5,7 +5,7 @@ import ( ) // Version the application version -var Version = "0.20.1" +var Version = "0.20.2" // SHA is the git reference used to build this package var SHA = "unknown" diff --git a/providers/security/puppetsec/puppet_security.go b/providers/security/puppetsec/puppet_security.go index 09297e4bf..d94284f73 100644 --- a/providers/security/puppetsec/puppet_security.go +++ b/providers/security/puppetsec/puppet_security.go @@ -150,7 +150,7 @@ func (s *PuppetSecurity) reinit() error { } if fc.BackwardCompatVerification { - s.log.Warnf("Puppet security system requesting legacy TLS support") + s.log.Debugf("Puppet security system requesting legacy TLS support") } else { s.log.Debugf("Puppet security system supporting only new certificates") }