Add logging to every ProxyRequest call

This commit is contained in:
2026-01-31 17:54:51 -05:00
parent cd29e0de6c
commit 103808f079

View File

@@ -1702,6 +1702,9 @@ public class JellyfinController : ControllerBase
[HttpPost("{**path}", Order = 100)]
public async Task<IActionResult> 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))
{