From d0c8e4510283dbe365ef8fbb0967db28ec6f7b5a Mon Sep 17 00:00:00 2001 From: Yannick Warnier Date: Sun, 5 Jan 2014 15:56:52 -0500 Subject: [PATCH] Minor - Remove error logging - OpenMeetings plugin - refs BT#7046 refs #5491 --- plugin/openmeetings/lib/openmeetings.class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin/openmeetings/lib/openmeetings.class.php b/plugin/openmeetings/lib/openmeetings.class.php index 844e35f1d8..151254e96d 100644 --- a/plugin/openmeetings/lib/openmeetings.class.php +++ b/plugin/openmeetings/lib/openmeetings.class.php @@ -135,7 +135,7 @@ class OpenMeetings $roomId = null; $meetingData = \Database::select('*', $this->table, array('where' => array('c_id = ?' => $this->chamiloCourseId, ' AND session_id = ? ' => $this->chamiloSessionId)), 'first'); if ($meetingData != false && count($meetingData) > 0) { - error_log('Found previous room reference - reusing'); + //error_log('Found previous room reference - reusing'); // There has been a room in the past for this course. It should // still be on the server, so update (instead of creating a new one) // This fills the following attributes: status, name, comment, chamiloCourseId, chamiloSessionId @@ -151,7 +151,7 @@ class OpenMeetings } } else { - error_log('Found no previous room - creating'); + //error_log('Found no previous room - creating'); $room = new Room(); $room->SID = $this->sessionId; $room->name = $this->roomName;