From 4931d09358cc08fdaaa823827655ef9b0a3a4567 Mon Sep 17 00:00:00 2001 From: Myk Melez Date: Mon, 22 Sep 2014 01:56:10 -0700 Subject: [PATCH] make it more obvious which number is the time --- instrument.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/instrument.js b/instrument.js index fae1b43d..72b8d180 100644 --- a/instrument.js +++ b/instrument.js @@ -90,7 +90,7 @@ var Instrument = { console.log("Profile:"); methods.forEach(function(method) { - console.log(method.time + " " + method.count + " " + method.key); + console.log(method.time + "ms " + method.count + " " + method.key); }); this.profiling = false;