Log IOException

This commit is contained in:
TelepathicWalrus 2024-01-22 17:43:35 +00:00
parent 538f141b4c
commit 1d235205ae

View File

@ -64,9 +64,9 @@ namespace Emby.Server.Implementations.Library
await jsonStream.DisposeAsync().ConfigureAwait(false);
}
catch (IOException)
catch (IOException ex)
{
_logger.LogDebug("Could not open cached media info");
_logger.LogDebug(ex, "Could not open cached media info");
}
catch (Exception ex)
{