From f84c482e346fa03d631e1b6ece885ef79b4bef9a Mon Sep 17 00:00:00 2001 From: Francesco Marciani Date: Fri, 6 May 2022 13:04:00 +0200 Subject: [PATCH] chore: remove log from cli --- packages/cli/src/deploy/index.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/cli/src/deploy/index.ts b/packages/cli/src/deploy/index.ts index 6b3d04a5..1a9ebd61 100644 --- a/packages/cli/src/deploy/index.ts +++ b/packages/cli/src/deploy/index.ts @@ -245,12 +245,10 @@ async function compareRemoteFns( ): Promise<'update' | 'new' | 'unchanged' | 'err'> { const version = hash(code).toString(16) const id = await client.id('function', name + envid) - console.log('>>>1') const remote = await client.get({ $id: id, current: true, }) - console.log('>>>2') if (remote.$isNull) return 'new' if (remote.current === version) return 'unchanged'