Improve log statement

This commit is contained in:
0xboobface 2018-10-25 12:56:32 +02:00
parent 4e1c7f7189
commit b4b3e7e910
1 changed files with 1 additions and 1 deletions

View File

@ -138,7 +138,7 @@ public class LocalRecorder implements Recorder {
try {
download.start(model, config);
} catch (IOException e) {
LOG.error("Download failed. Download alive: {}", download.isAlive(), e);
LOG.error("Download for {} failed. Download alive: {}", model.getName(), download.isAlive(), e);
}
}
}.start();