From 1d39b921379122d55ca88a9e67520b22cb6b272e Mon Sep 17 00:00:00 2001 From: Arnar Gauti Ingason Date: Sat, 12 Oct 2019 18:10:08 +0000 Subject: [PATCH] Adding logging of how many servers are found --- plex/client.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plex/client.go b/plex/client.go index 39c1f69..87ed6b3 100644 --- a/plex/client.go +++ b/plex/client.go @@ -49,6 +49,8 @@ func NewPlexClient(c *config.PlexConfig, l *log.Entry) (*PlexClient, error) { } } + l.Infof("Found %d working servers", len(serverList)) + return &PlexClient{ Logger: l, Servers: serverList,