From 7731c0fe27288545706c1c4ccf224926a0c2e92e Mon Sep 17 00:00:00 2001 From: daniel muniz Date: Fri, 24 Jan 2025 10:28:15 -0300 Subject: [PATCH] applying logs --- src/app.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app.js b/src/app.js index 467c05b..0cd5e64 100644 --- a/src/app.js +++ b/src/app.js @@ -7,7 +7,9 @@ const getCategory = new GetCategoryUseCase(); const categoryConverter = new CategoryConverterUseCase({categoriesMapping}); module.exports = async function app(domain){ + console.log(domain) const category = await getCategory.execute(domain) + console.log(category) const categoryConverted = await categoryConverter.execute(category) console.log(categoryConverted) return categoryConverted