mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-14 10:36:54 -07:00
Added logging #350
This commit is contained in:
parent
0b1edcc488
commit
af9953be6c
1 changed files with 5 additions and 0 deletions
|
@ -86,7 +86,12 @@ namespace PlexRequests.Services.Jobs
|
|||
// we do not want to set here...
|
||||
public int[] QueuedIds()
|
||||
{
|
||||
Log.Error("This is not an error, starting to get the CP Cached Id's");
|
||||
|
||||
var movies = Cache.Get<CouchPotatoMovies>(CacheKeys.CouchPotatoQueued);
|
||||
Log.Error("Cached result:");
|
||||
Log.Error(movies.DumpJson());
|
||||
|
||||
var items = movies?.movies?.Select(x => x.info?.tmdb_id).Cast<int>().ToArray();
|
||||
return items ?? new int[] { };
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue