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

dump how long vimperator needs to startup

This commit is contained in:
Martin Stubenschrott
2008-10-14 07:35:16 +00:00
parent 505197b685
commit 1e1fa8f51d

View File

@@ -1111,6 +1111,7 @@ const liberator = (function () //{{{
// this function is called when the chrome is ready // this function is called when the chrome is ready
startup: function () startup: function ()
{ {
let start = Date.now();
liberator.log("Initializing liberator object...", 0); liberator.log("Initializing liberator object...", 0);
// commands must always be the first module to be initialized // commands must always be the first module to be initialized
@@ -1180,6 +1181,7 @@ const liberator = (function () //{{{
statusline.update(); statusline.update();
liberator.dump("loaded in " + (Date.now() - start) + " ms");
liberator.log(config.name + " fully initialized", 0); liberator.log(config.name + " fully initialized", 0);
}, },