1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 18:42: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
startup: function ()
{
let start = Date.now();
liberator.log("Initializing liberator object...", 0);
// commands must always be the first module to be initialized
@@ -1180,6 +1181,7 @@ const liberator = (function () //{{{
statusline.update();
liberator.dump("loaded in " + (Date.now() - start) + " ms");
liberator.log(config.name + " fully initialized", 0);
},