1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-22 05:57:59 +01:00

Finish moving dactyl.dump to util from last commit, and store the last 15 intercepted stack traces.

This commit is contained in:
Kris Maglione
2010-10-06 18:08:07 -04:00
parent 312244c00c
commit 8c98658e74
12 changed files with 34 additions and 36 deletions

View File

@@ -59,7 +59,7 @@ const Dactyl = Module("dactyl", {
autocommands.trigger("LeavePre", {});
storage.saveAll();
dactyl.triggerObserver("shutdown", null);
dactyl.dump("All dactyl modules destroyed\n");
util.dump("All dactyl modules destroyed\n");
autocommands.trigger("Leave", {});
},
@@ -1897,7 +1897,7 @@ const Dactyl = Module("dactyl", {
dactyl.commandLineOptions.noPlugins = "++noplugin" in args;
dactyl.commandLineOptions.postCommands = args["+c"];
dactyl.commandLineOptions.preCommands = args["++cmd"];
dactyl.dump("Processing command-line option: " + commandline);
util.dump("Processing command-line option: " + commandline);
}
dactyl.log("Command-line options: " + util.objectToString(dactyl.commandLineOptions), 3);