From 85624d6164a043959ed5d29e94fce7207b15fbbb Mon Sep 17 00:00:00 2001 From: Tim Neutkens Date: Tue, 19 Jan 2021 09:44:03 +0100 Subject: [PATCH] Remove console.log --- packages/next/build/webpack/plugins/profiling-plugin.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/packages/next/build/webpack/plugins/profiling-plugin.ts b/packages/next/build/webpack/plugins/profiling-plugin.ts index 6dee491cd849..908164d6aa5d 100644 --- a/packages/next/build/webpack/plugins/profiling-plugin.ts +++ b/packages/next/build/webpack/plugins/profiling-plugin.ts @@ -18,10 +18,6 @@ export class ProfilingPlugin { apply(compiler: any) { // Only enabled when instrumentation is loaded const currentSpan = tracer.getCurrentSpan() - console.log({ - currentSpan, - isRecording: currentSpan?.isRecording(), - }) if (!currentSpan || !currentSpan.isRecording()) { return }