From f802d41842a0e0286330c7b59fa7623d698653a3 Mon Sep 17 00:00:00 2001 From: Vasilica Olariu Date: Thu, 10 Jul 2025 17:02:06 +0300 Subject: [PATCH] logger level --- src/shared/topcoder/challenges.service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/shared/topcoder/challenges.service.ts b/src/shared/topcoder/challenges.service.ts index 3e30272..ed294a9 100644 --- a/src/shared/topcoder/challenges.service.ts +++ b/src/shared/topcoder/challenges.service.ts @@ -24,7 +24,7 @@ export class TopcoderChallengesService { } }); - this.logger.debug(`Fetching challenges from: ${url.toString()}`); + this.logger.log(`Fetching challenges from: ${url.toString()}`); const headers: Record = { 'Content-Type': 'application/json', @@ -34,7 +34,7 @@ export class TopcoderChallengesService { headers['Authorization'] = `Bearer ${accessToken}`; } - this.logger.debug( + this.logger.log( `Fetching challenges with headers: ${JSON.stringify(headers)}`, );