From 59e58cd4a5971f58bbafabf9cb6fda3adaaddc66 Mon Sep 17 00:00:00 2001 From: Evan You Date: Mon, 24 Aug 2020 21:16:13 -0400 Subject: [PATCH] chore: remove console.log [ci skip] --- packages/runtime-core/src/scheduler.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/runtime-core/src/scheduler.ts b/packages/runtime-core/src/scheduler.ts index 43b88ae0..9c90f5c5 100644 --- a/packages/runtime-core/src/scheduler.ts +++ b/packages/runtime-core/src/scheduler.ts @@ -175,7 +175,6 @@ export function flushPostFlushCbs(seen?: CountMap) { if (__DEV__) { checkRecursiveUpdates(seen!, activePostFlushCbs[postFlushIndex]) } - console.log(postFlushIndex) activePostFlushCbs[postFlushIndex]() } activePostFlushCbs = null