From f472e0104d502c2400ee5408f62874d18e7b4135 Mon Sep 17 00:00:00 2001 From: Andrew Finlay Date: Thu, 1 Aug 2019 07:33:40 +1000 Subject: [PATCH] Remove unnecessary console.log statement --- lib/commands/instrument.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/commands/instrument.js b/lib/commands/instrument.js index c87a0829e..541878b2c 100644 --- a/lib/commands/instrument.js +++ b/lib/commands/instrument.js @@ -124,8 +124,6 @@ exports.handler = function (argv) { } } - console.log(`Running nyc from ${process.cwd()}`) - // If instrument is set to false enable a noop instrumenter. argv.instrumenter = (argv.instrument) ? './lib/instrumenters/istanbul'