Skip to content

Commit

Permalink
Fix log
Browse files Browse the repository at this point in the history
  • Loading branch information
bhardwajaditya committed Aug 31, 2023
1 parent 277ae8e commit cbf9281
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export class InactiveRoomsMonitor {
async _handleInactiveRooms() {
const rooms = await LivechatRooms.findOpenInactiveRoomsBasedOnTimeoutValue(this._inactivityTimeout);
rooms?.forEach((room: any) => {
logger.info('Closing inactive room', room._id);
logger.info('Closing inactive room: ', room._id);
Livechat.closeRoom({ comment: this._closeComment, room, user: this._user, visitor: null });
SNS.sendEvent({
roomId: room._id,
Expand Down

0 comments on commit cbf9281

Please sign in to comment.