Removes Json content from INFO LOG. To avoid too large logs.

This commit is contained in:
Gustavo Trott 2021-07-23 10:40:57 -03:00
parent 4e211d70a8
commit 0661712da1

View File

@ -370,8 +370,8 @@ class ActivityTrackerActor(
val activityJson: String = JsonUtil.toJson(meeting._2) val activityJson: String = JsonUtil.toJson(meeting._2)
val event = MsgBuilder.buildActivityReportEvtMsg(meeting._2.intId, activityJson) val event = MsgBuilder.buildActivityReportEvtMsg(meeting._2.intId, activityJson)
outGW.send(event) outGW.send(event)
log.info("Activity Report sent for meeting {}: {}",meeting._2.intId,activityJson) log.info("Activity Report sent for meeting {}",meeting._2.intId)
}) })
} }