From 5a8797a6dd97329b41812f487486cf11387bcf81 Mon Sep 17 00:00:00 2001 From: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> Date: Mon, 14 Nov 2022 11:11:53 -0800 Subject: [PATCH] Shorten TLS log message --- plexpy/webstart.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plexpy/webstart.py b/plexpy/webstart.py index 964a8b75..c8ed258f 100644 --- a/plexpy/webstart.py +++ b/plexpy/webstart.py @@ -110,7 +110,7 @@ def initialize(options): min_tls_version = options['https_min_tls_version'].replace('.', '_') context.minimum_version = getattr(ssl.TLSVersion, min_tls_version, ssl.TLSVersion.TLSv1_2) - logger.debug("Tautulli WebStart :: Web server minimum TLS version set to %s.", context.minimum_version.name) + logger.debug("Tautulli WebStart :: Minimum TLS version set to %s.", context.minimum_version.name) context.load_cert_chain(https_cert, https_key)