From 103808f079efa3d22c84ce4880f1308824e4fc6a Mon Sep 17 00:00:00 2001 From: Josh Patra Date: Sat, 31 Jan 2026 17:54:51 -0500 Subject: [PATCH] Add logging to every ProxyRequest call --- allstarr/Controllers/JellyfinController.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/allstarr/Controllers/JellyfinController.cs b/allstarr/Controllers/JellyfinController.cs index 7c15a97..92186c9 100644 --- a/allstarr/Controllers/JellyfinController.cs +++ b/allstarr/Controllers/JellyfinController.cs @@ -1702,6 +1702,9 @@ public class JellyfinController : ControllerBase [HttpPost("{**path}", Order = 100)] public async Task ProxyRequest(string path) { + // DEBUG: Log EVERY request to see what's happening + _logger.LogWarning("ProxyRequest called with path: {Path}", path); + // DEBUG: Log Spotify settings for playlist requests if (path.Contains("playlist", StringComparison.OrdinalIgnoreCase)) {