]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
Remove unnecessary debugging information
authorJoão Mesquita <jmesquita@freeswitch.org>
Sat, 23 Jan 2010 16:16:54 +0000 (16:16 +0000)
committerJoão Mesquita <jmesquita@freeswitch.org>
Sat, 23 Jan 2010 16:16:54 +0000 (16:16 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@16479 d0543943-73ff-0310-b7d9-9358b9ac24b2

fscomm/fshost.cpp

index d4a780c5cf925a5faf5d1d9b318dfc098005271a..8afc1e0ccdc6d4ca06f63d8d462b2c735a17becd 100644 (file)
@@ -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<Account> acc = _accounts.take(switch_event_get_header_nil(event, "Gateway"));
                 if (!acc.isNull())
                     emit delAccount(acc);
@@ -414,8 +413,6 @@ void FSHost::accountReloadCmd(QSharedPointer<Account> acc)
                           acc.data()->getName().toAscii().data());
     }
     _reloading_Accounts.append(acc.data()->getName());
-
-    qDebug() << "We are reloading...";
 }
 
 void FSHost::accountReloadSlot(QSharedPointer<Account> acc)
@@ -431,7 +428,6 @@ void FSHost::accountReloadSlot(QSharedPointer<Account> acc)
         }
         if (_reloading_Accounts.isEmpty())
             disconnect(this, SLOT(accountReloadSlot(QSharedPointer<Account>)));
-        qDebug() << "We are rescanning...";
     }
 }