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

Commit 9bb1ff6

Browse files
author
Wenbin Wu
committed
Add log
1 parent 32128e1 commit 9bb1ff6

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

services/contest_service_facade/src/java/main/com/topcoder/service/facade/contest/ejb/ContestServiceFacadeBean.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3744,7 +3744,9 @@ public SoftwareCompetition createSoftwareContest(TCSubject tcSubject, SoftwareCo
37443744
long tcDirectProjectId, Date regEndDate, Date multiRoundEndDate, Date endDate, boolean skipForum)
37453745
throws ContestServiceException, PermissionServiceException {
37463746
logger.debug("createSoftwareContest with information : [tcSubject = " + tcSubject.getUserId()
3747-
+ ", tcDirectProjectId =" + tcDirectProjectId + ", multiRoundEndDate = " + multiRoundEndDate + "]");
3747+
+ ", tcDirectProjectId =" + tcDirectProjectId
3748+
+ ", multiRoundEndDate = " + multiRoundEndDate
3749+
+ ", skipForum = " + String.valueOf(skipForum) + "]");
37483750

37493751
try {
37503752
ExceptionUtils.checkNull(contest, null, null, "The contest to create is null.");
@@ -4153,6 +4155,8 @@ else if (isDevContest) {
41534155
}
41544156
}
41554157
}
4158+
} else {
4159+
logger.info("Skip forum creation");
41564160
}
41574161

41584162
// if forum created

0 commit comments

Comments
 (0)