mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-19 07:23:05 +03:00
Fix exception logging
This commit is contained in:
@@ -89,11 +89,11 @@ namespace Emby.Server.Implementations.ScheduledTasks
|
||||
}
|
||||
catch (HttpException ex)
|
||||
{
|
||||
_logger.LogError("Error downloading {0}", ex, package.name);
|
||||
_logger.LogError(ex, "Error downloading {name}", package.name);
|
||||
}
|
||||
catch (IOException ex)
|
||||
{
|
||||
_logger.LogError("Error updating {0}", ex, package.name);
|
||||
_logger.LogError(ex, "Error updating {name}", package.name);
|
||||
}
|
||||
|
||||
// Update progress
|
||||
|
||||
Reference in New Issue
Block a user