this is better

This commit is contained in:
David Newhall II 2021-03-21 20:34:57 -07:00
parent 84e2c9127b
commit 16bb1447ef
2 changed files with 1 additions and 2 deletions

View File

@ -150,7 +150,6 @@ func (u *InputUnifi) checkSites(c *Controller) error {
}
u.LogDebugf("Checking Controller Sites List")
u.LogDebugf("Cert Paths: %v", c.CertPaths)
sites, err := c.Unifi.GetSites()
if err != nil {

View File

@ -61,7 +61,7 @@ func (u *InputUnifi) logController(c *Controller) {
u.Logf(" => URL: %s (verify SSL: %v)", c.URL, *c.VerifySSL)
if len(c.CertPaths) > 0 {
u.Logf(" => Cert Files: %s", c.CertPaths)
u.Logf(" => Cert Files: %s", strings.Join(c.CertPaths, ", "))
}
if c.Unifi != nil {