From f708b4df65f534b0ee04c5fd742ea1e43dacc460 Mon Sep 17 00:00:00 2001 From: Jermolene Date: Sat, 1 Aug 2015 13:13:47 +0100 Subject: [PATCH] Turn off performance instrumentation The plan is to make it be a user configurable option --- core/modules/startup/startup.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/startup/startup.js b/core/modules/startup/startup.js index 81ac45842..6bdb2e9a9 100755 --- a/core/modules/startup/startup.js +++ b/core/modules/startup/startup.js @@ -18,7 +18,7 @@ exports.after = ["load-modules"]; exports.synchronous = true; // Set to `true` to enable performance instrumentation -var PERFORMANCE_INSTRUMENTATION = true; +var PERFORMANCE_INSTRUMENTATION = false; var widget = require("$:/core/modules/widgets/widget.js");