Skip to content

Commit d3d7f42

Browse files
authored
Merge pull request #9 from topcoder-platform/logger-level-for-challenges
logger level
2 parents 32faaea + f802d41 commit d3d7f42

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/shared/topcoder/challenges.service.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export class TopcoderChallengesService {
2424
}
2525
});
2626

27-
this.logger.debug(`Fetching challenges from: ${url.toString()}`);
27+
this.logger.log(`Fetching challenges from: ${url.toString()}`);
2828

2929
const headers: Record<string, string> = {
3030
'Content-Type': 'application/json',
@@ -34,7 +34,7 @@ export class TopcoderChallengesService {
3434
headers['Authorization'] = `Bearer ${accessToken}`;
3535
}
3636

37-
this.logger.debug(
37+
this.logger.log(
3838
`Fetching challenges with headers: ${JSON.stringify(headers)}`,
3939
);
4040

0 commit comments

Comments
 (0)