From ae258498885cf6156ad08bc90b8d7993c1ff046d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Mesquita?= Date: Sat, 23 Jan 2010 16:16:54 +0000 Subject: [PATCH] Remove unnecessary debugging information git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@16479 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- fscomm/fshost.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/fscomm/fshost.cpp b/fscomm/fshost.cpp index d4a780c5cf..8afc1e0ccd 100644 --- a/fscomm/fshost.cpp +++ b/fscomm/fshost.cpp @@ -385,7 +385,6 @@ void FSHost::generalEventHandler(switch_event_t *event) } else if (strcmp(event->subclass_name, "sofia::gateway_del") == 0) { - qDebug() << "We are deleted..."; QSharedPointer acc = _accounts.take(switch_event_get_header_nil(event, "Gateway")); if (!acc.isNull()) emit delAccount(acc); @@ -414,8 +413,6 @@ void FSHost::accountReloadCmd(QSharedPointer acc) acc.data()->getName().toAscii().data()); } _reloading_Accounts.append(acc.data()->getName()); - - qDebug() << "We are reloading..."; } void FSHost::accountReloadSlot(QSharedPointer acc) @@ -431,7 +428,6 @@ void FSHost::accountReloadSlot(QSharedPointer acc) } if (_reloading_Accounts.isEmpty()) disconnect(this, SLOT(accountReloadSlot(QSharedPointer))); - qDebug() << "We are rescanning..."; } }