Skip to content
Snippets Groups Projects
Commit 05255117 authored by Richard Alam's avatar Richard Alam
Browse files

- add logging for meeting cleaner background proc

parent 2a02abe6
No related branches found
No related tags found
No related merge requests found
......@@ -37,6 +37,7 @@ public class MeetingService {
* running meetings.
*/
public void removeExpiredMeetings() {
log.info("Cleaning up expired meetings");
for (Meeting m : meetings.values()) {
if (m.hasExpired(defaultMeetingExpireDuration) || m.wasNeverStarted(defaultMeetingCreateJoinDuration)) {
log.info("Removing expired meeting [{} - {}]", m.getInternalId(), m.getName());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment