diff --git a/.changeset/young-bananas-cheat.md b/.changeset/young-bananas-cheat.md new file mode 100644 index 0000000..e96a368 --- /dev/null +++ b/.changeset/young-bananas-cheat.md @@ -0,0 +1,5 @@ +--- +"@lightpanda/browser": patch +--- + +Don't pollute the console with `"🐼 Running Lightpanda's CDP server…"` (#15) diff --git a/packages/browser/src/serve.ts b/packages/browser/src/serve.ts index 3bb2e76..3942755 100644 --- a/packages/browser/src/serve.ts +++ b/packages/browser/src/serve.ts @@ -76,10 +76,6 @@ export const serve = (options: LightpandaServeOptions = defaultOptions) => { const process = spawn(executablePath, ['serve', ...flags]) process.on('spawn', async () => { - console.info("🐼 Running Lightpanda's CDP server…", { - pid: process.pid, - }) - await new Promise(resolve => setTimeout(resolve, 250)) resolve(process) })