diff --git a/tdarr_inform.py b/tdarr_inform.py index 6f990fe..dd52851 100644 --- a/tdarr_inform.py +++ b/tdarr_inform.py @@ -128,6 +128,9 @@ def main(): arr["type"] = "sonarr" elif "radarr_eventtype" in os.environ: arr["type"] = "radarr" + for x in os.environ: + if x.startswith("radarr"): + loggit("%s: %s" % (x, os.environ[x])) else: loggit("Could not Detect Radarr or Sonarr", True) sys.exit(0)