Skip to content

Commit

Permalink
Better error handling for LoadRegularPost
Browse files Browse the repository at this point in the history
  • Loading branch information
ImoutoChan committed Sep 30, 2024
1 parent 037c056 commit e8b0ccc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ private static bool IsUgoira(Imouto.BooruParser.Post post)
}
catch (Exception e)
{
_logger.LogError(e, "Failed to load media from {MediaUrl} ({Md5}) ", mediaUrl, post.Id.Md5Hash);
_logger.LogError(e, "Failed to load media from {MediaUrl} ({Id} {Md5}) ", mediaUrl, post.Id.Id, post.Id.Md5Hash);
throw;
}
}
Expand Down

0 comments on commit e8b0ccc

Please sign in to comment.