From 206a1758399fa6cea87508c7d5a1594d87858ad3 Mon Sep 17 00:00:00 2001 From: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> Date: Wed, 5 Jan 2022 15:56:23 -0800 Subject: [PATCH] Add logger warning message when authentication is disabled --- plexpy/webstart.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plexpy/webstart.py b/plexpy/webstart.py index 2f543fb9..59ae8608 100644 --- a/plexpy/webstart.py +++ b/plexpy/webstart.py @@ -127,6 +127,8 @@ def initialize(options): basic_auth_enabled = False cherrypy.tools.auth = cherrypy.Tool('before_handler', webauth.check_auth, priority=2) else: + logger.warn("Tautulli WebStart :: Web server authentication is disabled!") + plexpy.AUTH_ENABLED = False basic_auth_enabled = False