Log errors

pull/1/head
yflory 4 years ago
parent c430e72a19
commit f698a039a8

@ -545,7 +545,7 @@ define([
xhr.responseType = 'arraybuffer'; xhr.responseType = 'arraybuffer';
xhr.onload = function () { xhr.onload = function () {
if (/^4/.test('' + this.status)) { if (/^4/.test('' + this.status)) {
onCpError(); onCpError(this.status);
return void console.error('XHR error', this.status); return void console.error('XHR error', this.status);
} }
var arrayBuffer = xhr.response; var arrayBuffer = xhr.response;
@ -561,8 +561,8 @@ define([
}); });
} }
}; };
xhr.onerror = function () { xhr.onerror = function (err) {
onCpError(); onCpError(err);
}; };
xhr.send(null); xhr.send(null);
}; };
@ -1884,7 +1884,8 @@ define([
var checkNewCheckpoint = function () { var checkNewCheckpoint = function () {
var lastCp = getLastCp(); var lastCp = getLastCp();
loadLastDocument(lastCp, function () { loadLastDocument(lastCp, function (err) {
console.error(err);
// On error, do nothing // On error, do nothing
// XXX lock the document or ask for a page reload? // XXX lock the document or ask for a page reload?
}, function (blob, type) { }, function (blob, type) {

Loading…
Cancel
Save