Refactor: improved images download logs

This commit is contained in:
Oleg Agafonov 2023-03-21 16:31:33 +04:00
parent af5d8fae9d
commit 6200b43a8d

View file

@ -904,9 +904,14 @@ public class DownloadPicturesService extends DefaultBoundedRangeModel implements
// check result // check result
if (responseCode != 200) { if (responseCode != 200) {
// show errors only on full fail (all urls were not work) // show errors only on full fail (all urls were not work)
errorsList.add("Image download for " + card.getName() String info = String.format("Image download failed for %s - %s%s, http code: %d, url: %s",
+ (!card.getDownloadName().equals(card.getName()) ? " downloadname: " + card.getDownloadName() : "") card.getSet(),
+ " (" + card.getSet() + ") failed - responseCode: " + responseCode + " url: " + url.toString()); card.getName(),
(card.getDownloadName().equals(card.getName()) ? "" : ", cardDownloadName: " + card.getDownloadName()),
responseCode,
url
);
errorsList.add(info);
if (logger.isDebugEnabled()) { if (logger.isDebugEnabled()) {
// Shows the returned html from the request to the web server // Shows the returned html from the request to the web server