From 299f165d11f8aebf0a7ccc8967d44d484fa2f34c Mon Sep 17 00:00:00 2001 From: bullmoose20 Date: Wed, 23 Aug 2023 16:39:03 -0400 Subject: [PATCH] Update plex.py with plex db cache size information --- modules/plex.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/plex.py b/modules/plex.py index 0aa48069..46c8dac2 100644 --- a/modules/plex.py +++ b/modules/plex.py @@ -445,6 +445,8 @@ class Plex(Library): logger.info(f"Running on {self.PlexServer.platform} version {self.PlexServer.platformVersion}") pp_str = f"PlexPass: {self.PlexServer.myPlexSubscription}" srv_settings = self.PlexServer.settings + db_cache = srv_settings.get("DatabaseCachesize") + logger.info(f"Plex DB cache setting = {db_cache}") uc_str = f"Unknown update channel." if srv_settings.get("butlerUpdateChannel").value == '16': uc_str = f"Public update channel."