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

Commit f447d6f

Browse files
author
James Cori
committed
Removing logging
1 parent 2563ff1 commit f447d6f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/services/challengeService.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -689,7 +689,7 @@ async function buildV5Challenge (legacyId, challengeListing, challengeDetails) {
689689
})
690690
}
691691

692-
logger.debug(`v4 Phases ${JSON.stringify(challengeListing.phases)}`)
692+
// logger.debug(`v4 Phases ${JSON.stringify(challengeListing.phases)}`)
693693
newChallenge.startDate = moment(challengeListing.registrationStartDate).utc().format()
694694
let challengeEndDate = newChallenge.startDate
695695
const phases = _.map(challengeListing.phases, phase => {
@@ -719,7 +719,7 @@ async function buildV5Challenge (legacyId, challengeListing, challengeDetails) {
719719
return newPhase
720720
})
721721
newChallenge.endDate = challengeEndDate
722-
logger.debug(`Final Phase Array ${JSON.stringify(phases)}`)
722+
// logger.debug(`Final Phase Array ${JSON.stringify(phases)}`)
723723

724724
if (phases.length > 0) {
725725
const registrationPhase = _.find(phases, p => p.name === 'Registration')

0 commit comments

Comments
 (0)