From a04f717068aa52721e59b7c6ce5829dcf80198ef Mon Sep 17 00:00:00 2001 From: Stefan Sayer Date: Wed, 16 Jul 2008 13:00:59 +0000 Subject: [PATCH] more verbose logging, so we know where the reinvite/bye comes from git-svn-id: http://svn.berlios.de/svnroot/repos/sems/trunk@1049 8eb893ce-cfd4-0310-b710-fb5ebe64c474 --- core/plug-in/session_timer/SessionTimer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/plug-in/session_timer/SessionTimer.cpp b/core/plug-in/session_timer/SessionTimer.cpp index 99b1f484..266c9a1c 100644 --- a/core/plug-in/session_timer/SessionTimer.cpp +++ b/core/plug-in/session_timer/SessionTimer.cpp @@ -315,6 +315,7 @@ void SessionTimer::onTimeoutEvent(AmTimeoutEvent* timeout_ev) int timer_id = timeout_ev->data.get(0).asInt(); if (timer_id == ID_SESSION_REFRESH_TIMER) { + DBG("Session Timer: initiating refresh (Re-Invite)\n"); if (session_refresher == refresh_local) // send reinvite with SDP s->sendReinvite(true); @@ -323,10 +324,9 @@ void SessionTimer::onTimeoutEvent(AmTimeoutEvent* timeout_ev) } else if (timer_id == ID_SESSION_INTERVAL_TIMER) { // // let the session know it got timeout // onTimeout(); - + DBG("Session Timer: Timerout, ending session.\n"); s->dlg.bye(); s->setStopped(); - } else { DBG("unknown timeout event received.\n"); }