mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-06-03 05:34:16 -04:00
Update error handling
This commit is contained in:
parent
08592fb3fe
commit
538f141b4c
@ -64,9 +64,13 @@ namespace Emby.Server.Implementations.Library
|
|||||||
|
|
||||||
await jsonStream.DisposeAsync().ConfigureAwait(false);
|
await jsonStream.DisposeAsync().ConfigureAwait(false);
|
||||||
}
|
}
|
||||||
catch
|
catch (IOException)
|
||||||
{
|
{
|
||||||
_logger.LogError("Could not open cached media info");
|
_logger.LogDebug("Could not open cached media info");
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
_logger.LogError(ex, "Error opening cached media info");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user