Skip to content

Commit 73b02de

Browse files
committed
remove logs
1 parent 581ddc2 commit 73b02de

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/fr/istic/service/ExamService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,6 @@ private static int gcd(int a, int b) {
405405
}
406406
@Transactional
407407
public void createNoteBookExamStructure(List<AnswersNoteBook> answersNoteBook, User u) {
408-
log.error("ok recu " + answersNoteBook.size());
409408
Exam e =Exam.findById(answersNoteBook.get(0).getExamId());
410409

411410
Integer maxLength = answersNoteBook.stream().mapToInt(answersNoteBook1 -> answersNoteBook1.getQuestions().size()).max().orElse(0);
@@ -458,6 +457,7 @@ public void createNoteBookExamStructure(List<AnswersNoteBook> answersNoteBook, U
458457
// Hybride comment à créer
459458
HybridGradedComment hybridGradedComment = new HybridGradedComment();
460459
hybridGradedComment.text = "Note";
460+
hybridGradedComment.description = "Nbgrader automatic evaluation";
461461
hybridGradedComment.question = q;
462462
q.hybridcomments.add(hybridGradedComment);
463463
hybridGradedComment.relative= true;

0 commit comments

Comments
 (0)