From 49703f572cb073a2f4598c8eedfe9d70d08a4ecd Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Thu, 31 May 2018 01:00:49 -0400 Subject: [PATCH] Removes extra logging --- src/git/shell.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/git/shell.ts b/src/git/shell.ts index 4509923..bba0e09 100644 --- a/src/git/shell.ts +++ b/src/git/shell.ts @@ -136,7 +136,7 @@ export function runCommand(command: string, args: any[], options: CommandOptions reject(new Error(`Command output exceeded the allocated stdout buffer. Set 'options.maxBuffer' to a larger value than ${opts.maxBuffer} bytes`)); } - Logger.warn(`Error(${opts.cwd}): ${command} ${args.join(' ')})\n (${err.code}) ${err.message}\n${stderr}`); + // Logger.warn(`Error(${opts.cwd}): ${command} ${args.join(' ')})\n (${err.code}) ${err.message}\n${stderr}`); reject(err); } );