Better debugging
parent
9a92a61484
commit
80a80aef7a
|
@ -115,6 +115,11 @@ H5P.ContentUpgradeProcess = (function (Version) {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
catch (err) {
|
catch (err) {
|
||||||
|
if (console && console.log) {
|
||||||
|
console.log("Error", err.stack);
|
||||||
|
console.log("Error", err.name);
|
||||||
|
console.log("Error", err.message);
|
||||||
|
}
|
||||||
next(err);
|
next(err);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue