Skip to content

Commit 6b95eb7

Browse files
committed
Updating logging
1 parent 141a24e commit 6b95eb7

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ workflows:
6969
filters:
7070
branches:
7171
only:
72-
- circleci
72+
- develop
7373

7474
# Production builds are exectuted only on tagged commits to the
7575
# master branch.

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@
22
"name": "challenge-processor",
33
"version": "1.0.0",
44
"description": "Topcoder - Challenge Processor",
5+
"repository": "https://github.com/topcoder-platform/challenge-processor",
6+
"license": "none",
57
"main": "src/app.js",
68
"scripts": {
79
"start": "node src/app.js",
810
"lint": "standard",
911
"lint:fix": "standard --fix"
1012
},
1113
"author": "TCSCODER",
12-
"license": "none",
1314
"devDependencies": {
1415
"standard": "^12.0.1",
1516
"uuid": "^3.3.2"

src/services/ProcessorService.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ async function updateTaskInformation (challengeId, memberId) {
2626
challengeTaskInformation.memberId = null
2727
}
2828
await helper.patchRequest(`${config.CHALLENGE_API_URL}/${challengeId}`, challengeTaskInformation, m2mToken)
29-
logger.info(`Challenge updated!`)
29+
logger.info(`Task updated for id ${challengeId} ${JSON.stringify(challengeTaskInformation)}!`)
3030
}
3131
}
3232

0 commit comments

Comments
 (0)