Print exception in card failure alert

This commit is contained in:
Adam Goldsmith 2021-09-18 00:33:22 -04:00
parent 4c049a5e9e
commit 72d42d0d92
1 changed files with 1 additions and 1 deletions

View File

@ -192,7 +192,7 @@ function run() {
deck_graphics.drawImage(card_image, col * card_image.width, row * card_image.height, null);
} catch (ex) {
alert('Error while processing ' + card, true);
alert('Error while processing ' + card + ': ' + ex, true);
}
}
println("End of Row ", row);