Skip to content

Commit

Permalink
Merge pull request #19680 from antobinary/port-logs
Browse files Browse the repository at this point in the history
fix: Reduce logs in SendWhiteboardAnnotationPubMsgHdlr.scala (port)
  • Loading branch information
antobinary committed Feb 24, 2024
2 parents fb26828 + f03df02 commit db03d0b
Showing 1 changed file with 5 additions and 5 deletions.
Expand Up @@ -52,11 +52,11 @@ trait SendWhiteboardAnnotationsPubMsgHdlr extends RightsManagementTrait {
)

if (isUserOneOfPermited || isUserAmongPresenters) {
println("============= Printing Sanitized annotations ============")
for (annotation <- msg.body.annotations) {
printAnnotationInfo(annotation)
}
println("============= Printed Sanitized annotations ============")
// println("============= Printing Sanitized annotations ============")
// for (annotation <- msg.body.annotations) {
// printAnnotationInfo(annotation)
// }
// println("============= Printed Sanitized annotations ============")
val annotations = sendWhiteboardAnnotations(msg.body.whiteboardId, msg.header.userId, msg.body.annotations, liveMeeting, isUserAmongPresenters, isUserModerator)
broadcastEvent(msg, msg.body.whiteboardId, annotations, msg.body.html5InstanceId)
} else {
Expand Down

0 comments on commit db03d0b

Please sign in to comment.