From 96d2893d10013168e92637b655f9782f6a1b4926 Mon Sep 17 00:00:00 2001 From: Jesse MacFadyen Date: Thu, 19 Sep 2024 19:09:02 -0700 Subject: [PATCH] remove console.log --- src/lib/run-dev.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/lib/run-dev.js b/src/lib/run-dev.js index c8c3999e..9c02130f 100644 --- a/src/lib/run-dev.js +++ b/src/lib/run-dev.js @@ -83,7 +83,6 @@ async function runDev (config, dataDir, options = {}, log = () => {}, inprocHook // build and deploy actions log('building actions..') await buildActions(devConfig, null, false /* force build */) - console.log('log = ', log('boo')) const { cleanup: watcherCleanup } = await actionsWatcher({ config: devConfig, isLocal, log, inprocHook }) cleanup.add(() => watcherCleanup(), 'stopping action watcher...') }