From 9869acde0e330ad0a460db25cce4d352d641c39d Mon Sep 17 00:00:00 2001 From: John Andrews Date: Thu, 30 Jan 2025 11:00:44 +1300 Subject: [PATCH] FF-1981: TV Show Lookup using cache --- MetaNodes/TheMovieDb/TVShowLookup.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/MetaNodes/TheMovieDb/TVShowLookup.cs b/MetaNodes/TheMovieDb/TVShowLookup.cs index f7db14ae..e9460b13 100644 --- a/MetaNodes/TheMovieDb/TVShowLookup.cs +++ b/MetaNodes/TheMovieDb/TVShowLookup.cs @@ -7,6 +7,7 @@ using FileFlows.Plugin; using FileFlows.Plugin.Attributes; using FileFlows.Plugin.Helpers; using MetaNodes.Helpers; +using Newtonsoft.Json; namespace MetaNodes.TheMovieDb; @@ -80,7 +81,7 @@ public class TVShowLookup : Node TVShowInfo result = args.Cache.GetObject(tvShowInfoCacheKey); if (result != null) { - args.Logger?.ILog("Got TV show info from cache: " + result.Name); + args.Logger?.ILog("Got TV show info from cache: " + result.Name + "\n" + System.Text.Json.JsonSerializer.Serialize(result)); } else {