Explorar el Código

Removes extra logging

main
Eric Amodio hace 6 años
padre
commit
49703f572c
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      src/git/shell.ts

+ 1
- 1
src/git/shell.ts Ver fichero

@ -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);
}
);

Cargando…
Cancelar
Guardar