From b48cc3589c724849b94b303ecab50657f75066b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daphn=C3=A9=20Popin?= Date: Tue, 17 Oct 2023 09:50:47 +0200 Subject: [PATCH] Alerting - Remove Soupinou debug log (#2143) --- alerting/temporal/src/index.ts | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/alerting/temporal/src/index.ts b/alerting/temporal/src/index.ts index 116c0ba54e83..128976c8accf 100644 --- a/alerting/temporal/src/index.ts +++ b/alerting/temporal/src/index.ts @@ -290,22 +290,6 @@ const main = async () => { body: { series: [...countSeries, ...guageSeries] }, }); - await logApi.submitLog({ - body: [ - { - ddsource: "temporal", - ddtags: "temporal", - hostname: "temporal", - message: "test message soupinou", - service: "temporal", - }, - ], - contentEncoding: "deflate", - }); - - const test = { series: [...countSeries, ...guageSeries] }; - console.log(JSON.stringify(test, null, 2)); - console.log({ level: "info", message: "Pausing for 20s" }); await setTimeoutAsync(20 * 1000); }