1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 21:02:25 +01:00

Dump a stack on failed module load

This commit is contained in:
Kris Maglione
2008-10-06 21:52:50 +00:00
parent cee74dd15e
commit 1084a94f65

View File

@@ -52,6 +52,7 @@ const liberator = (function () //{{{
toJavaScriptConsole(); toJavaScriptConsole();
Components.utils.reportError(e); Components.utils.reportError(e);
liberator.dump(e + "\n"); liberator.dump(e + "\n");
liberator.dump(e.stack + "\n");
} }
} }