From 221dfe432859646288ca0c875b182b92f04022a1 Mon Sep 17 00:00:00 2001 From: alinarublea Date: Fri, 20 Oct 2023 14:59:39 +0200 Subject: [PATCH] feat: update according to code review x2 --- src/index.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/index.js b/src/index.js index 2ca4ae69..b0bb4722 100644 --- a/src/index.js +++ b/src/index.js @@ -11,7 +11,6 @@ */ import secrets from '@adobe/helix-shared-secrets'; import wrap from '@adobe/helix-shared-wrap'; -import { logger } from '@adobe/helix-universal-logger'; import { helixStatus } from '@adobe/helix-status'; import SQSQueue from './sqs-queue.js'; import dynamoDBWrapper from './db-wrapper.js'; // Assuming the exported content of './db' is default exported @@ -45,7 +44,5 @@ async function run(request, context) { export const main = wrap(run) .with(dynamoDBWrapper) - .with(logger.trace) - .with(logger) .with(secrets) .with(helixStatus);