mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-02-27 01:15:47 +01:00
Release 1.0 βeta 4.
This commit is contained in:
@@ -159,7 +159,11 @@ function defineModule(name, params) {
|
||||
|
||||
defineModule.loadLog = [];
|
||||
Object.defineProperty(defineModule.loadLog, "push", {
|
||||
value: function (val) { defineModule.dump(val + "\n"); this[this.length] = val; }
|
||||
value: function (val) {
|
||||
if (false)
|
||||
defineModule.dump(val + "\n");
|
||||
this[this.length] = Date.now() + " " + val;
|
||||
}
|
||||
});
|
||||
defineModule.dump = function dump_() {
|
||||
let msg = Array.map(arguments, function (msg) {
|
||||
|
||||
Reference in New Issue
Block a user