From 6d7f64f1573b6fdf1ce07f48b03f61305a1f3b06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Ole=C5=9B?= Date: Sat, 29 Jan 2022 02:12:11 +0100 Subject: [PATCH] fix: remove console.log in getInfrastructureLogger --- .nvmrc | 1 - .prettierignore | 1 - src/infrastructure-logger.ts | 1 - 3 files changed, 3 deletions(-) delete mode 100644 .nvmrc delete mode 100644 .prettierignore diff --git a/.nvmrc b/.nvmrc deleted file mode 100644 index f599e28b..00000000 --- a/.nvmrc +++ /dev/null @@ -1 +0,0 @@ -10 diff --git a/.prettierignore b/.prettierignore deleted file mode 100644 index 5c619fa1..00000000 --- a/.prettierignore +++ /dev/null @@ -1 +0,0 @@ -./test/integration/project/lintingError.ts diff --git a/src/infrastructure-logger.ts b/src/infrastructure-logger.ts index 6d7c0d96..fa47f099 100644 --- a/src/infrastructure-logger.ts +++ b/src/infrastructure-logger.ts @@ -10,7 +10,6 @@ export interface InfrastructureLogger { export function getInfrastructureLogger(compiler: webpack.Compiler): InfrastructureLogger { const logger = compiler.getInfrastructureLogger('ForkTsCheckerWebpackPlugin'); - console.log(compiler.infrastructureLogger); return { log: logger.log.bind(logger),