From 39d53e78738bbfd1e7a91da9572adb3e7477760c Mon Sep 17 00:00:00 2001 From: Stefan Sayer Date: Thu, 5 Jul 2007 00:32:29 +0000 Subject: [PATCH] removed excessive debug information git-svn-id: http://svn.berlios.de/svnroot/repos/sems/trunk@384 8eb893ce-cfd4-0310-b710-fb5ebe64c474 --- apps/registrar_client/SIPRegistrarClient.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/registrar_client/SIPRegistrarClient.cpp b/apps/registrar_client/SIPRegistrarClient.cpp index 725fe2ff..82ff7986 100644 --- a/apps/registrar_client/SIPRegistrarClient.cpp +++ b/apps/registrar_client/SIPRegistrarClient.cpp @@ -462,13 +462,13 @@ get_reg(const string& reg_id) SIPRegistration* SIPRegistrarClient:: get_reg_unsafe(const string& reg_id) { - DBG("get registration_unsafe '%s'\n", reg_id.c_str()); + // DBG("get registration_unsafe '%s'\n", reg_id.c_str()); SIPRegistration* res = NULL; map::iterator it = registrations.find(reg_id); if (it!=registrations.end()) res = it->second; - DBG("get registration_unsafe : res = '%ld' (this = %ld)\n", (long)res, (long)this); + // DBG("get registration_unsafe : res = '%ld' (this = %ld)\n", (long)res, (long)this); return res; }