log the error stack for a kernel javascript error message

This commit is contained in:
Jason Grout 2013-12-31 14:33:37 -07:00 committed by Jonathan Frederic
parent 07ffef8392
commit 00472333ec

View File

@ -489,7 +489,7 @@ var IPython = (function (IPython) {
try { try {
callbacks.iopub.status(msg); callbacks.iopub.status(msg);
} catch (e) { } catch (e) {
console.log("Exception in status msg handler", e); console.log("Exception in status msg handler", e, e.stack);
} }
} }