From 1e1fa8f51db9fa8efb2360fa891655a1cc2b6660 Mon Sep 17 00:00:00 2001 From: Martin Stubenschrott Date: Tue, 14 Oct 2008 07:35:16 +0000 Subject: [PATCH] dump how long vimperator needs to startup --- content/liberator.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/content/liberator.js b/content/liberator.js index 1b02145b..dbf78f58 100644 --- a/content/liberator.js +++ b/content/liberator.js @@ -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); },