mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-15 09:59:06 -07:00
Log IOException
This commit is contained in:
parent
538f141b4c
commit
1d235205ae
@ -64,9 +64,9 @@ namespace Emby.Server.Implementations.Library
|
|||||||
|
|
||||||
await jsonStream.DisposeAsync().ConfigureAwait(false);
|
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)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user