From 840bd253641da63c254c536519e704c0804223a8 Mon Sep 17 00:00:00 2001 From: meisnate12 Date: Tue, 30 Mar 2021 20:33:08 -0400 Subject: [PATCH] output metadata path for each library --- modules/plex.py | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/plex.py b/modules/plex.py index f242b563..771dd53e 100644 --- a/modules/plex.py +++ b/modules/plex.py @@ -113,6 +113,7 @@ class PlexAPI: self.Plex = next((s for s in self.PlexServer.library.sections() if s.title == params["name"] and ((self.is_movie and isinstance(s, MovieSection)) or (self.is_show and isinstance(s, ShowSection)))), None) if not self.Plex: raise Failed(f"Plex Error: Plex Library {params['name']} not found") + logger.info(f"Using Metadata File: {params['metadata_path']}") try: self.data, ind, bsi = yaml.util.load_yaml_guess_indent(open(params["metadata_path"], encoding="utf-8")) except yaml.scanner.ScannerError as ye: