From 8e4f7c9065b27c11f0309bedb7b780ed793cbd80 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Tue, 18 Jul 2023 14:44:46 +0200 Subject: [PATCH] remove console.log --- apps/api/src/lib/buildPacks/compose.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/api/src/lib/buildPacks/compose.ts b/apps/api/src/lib/buildPacks/compose.ts index 136ea9814..9f5288463 100644 --- a/apps/api/src/lib/buildPacks/compose.ts +++ b/apps/api/src/lib/buildPacks/compose.ts @@ -52,7 +52,6 @@ export default async function (data) { } let environment = typeof value['environment'] === 'undefined' ? [] : value['environment']; - console.log({ key, environment }); if (Object.keys(environment).length > 0) { environment = Object.entries(environment).map(([key, value]) => `${key}=${value}`); }