Improved ImageJob timeout error logging

This commit is contained in:
Mark Allen Matney, Jr 2018-09-10 00:59:25 -07:00
parent 42060a49b5
commit f94aa78cc6

View File

@ -84,7 +84,7 @@ ImageJob.prototype = {
};
this.jobId = window.setTimeout(function(){
self.errorMsg = "Image load exceeded timeout";
self.errorMsg = "Image load exceeded timeout (" + self.timeout + " ms)";
self.finish(false);
}, this.timeout);