diff --git a/API/MangaDownloadClients/HttpDownloadClient.cs b/API/MangaDownloadClients/HttpDownloadClient.cs index 2c67632..fd0e6be 100644 --- a/API/MangaDownloadClients/HttpDownloadClient.cs +++ b/API/MangaDownloadClients/HttpDownloadClient.cs @@ -40,6 +40,7 @@ internal class HttpDownloadClient : DownloadClient if (!response.IsSuccessStatusCode) { + Log.Debug($"Request returned status code {response.StatusCode} {response.ReasonPhrase}:\n{response.Content.ReadAsStringAsync()}"); return new (response.StatusCode, null, Stream.Null); }