Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit e47621f

Browse files
committed
Additional logging
1 parent c2875ff commit e47621f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

services/IssueService.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,9 @@ async function ensureChallengeExists(event, issue, create = true) {
6868
provider: issue.provider,
6969
repositoryId: issue.repositoryId
7070
});
71-
71+
logger.debug(`DB Issue number: ${issue.number}`);
72+
logger.debug(`DB Issue provider: ${issue.provider}`);
73+
logger.debug(`DB Issue repository: ${issue.repositoryId}`);
7274
if (dbIssue && dbIssue.status === 'challenge_creation_pending') {
7375
throw errors.internalDependencyError(`Challenge for the updated issue ${issue.number} is creating, rescheduling this event`);
7476
}

0 commit comments

Comments
 (0)