From c3fd8afbaca1f5aec4704ac9a879dda0fa930838 Mon Sep 17 00:00:00 2001 From: Stefan Sayer Date: Fri, 6 May 2011 22:41:38 +0200 Subject: [PATCH] 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 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/AmSipDispatcher.cpp b/core/AmSipDispatcher.cpp index 9248e8b1..12f54357 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 { - ERROR("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()); } }