Module: sems Branch: master Commit: a5cda8788f6f271bf7a361b8182cdf4bb13bb784 URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sems/?a=commit;h=a5cda8788f6f271bf7a361b8182cdf4bb13bb784
Author: Stefan Sayer <[email protected]> Committer: Stefan Sayer <[email protected]> Date: Fri May 6 22:38:31 2011 +0200 b/f: ACK for non-existing dialog logged as DEBUG for e.g. ACK to negative replies in B2BUA, the dialog may already be forgotten when the ACK comes in, thus this is a normally occuring event. reported by Juha Heinanen --- core/AmSipDispatcher.cpp | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/core/AmSipDispatcher.cpp b/core/AmSipDispatcher.cpp index e2873cf..6bb122a 100644 --- a/core/AmSipDispatcher.cpp +++ b/core/AmSipDispatcher.cpp @@ -76,9 +76,9 @@ void AmSipDispatcher::handleSipMsg(AmSipRequest &req) "Call leg/Transaction does not exist"); } else { - WARN("received ACK for non-existing dialog " - "(callid=%s;remote_tag=%s;local_tag=%s)\n", - callid.c_str(),remote_tag.c_str(),local_tag.c_str()); + DBG("received ACK for non-existing dialog " + "(callid=%s;remote_tag=%s;local_tag=%s)\n", + callid.c_str(),remote_tag.c_str(),local_tag.c_str()); } } _______________________________________________ Semsdev mailing list [email protected] http://lists.iptel.org/mailman/listinfo/semsdev
