From 2e8690e6f5b57e0ff0fcd8cbf5047c26f73226ca Mon Sep 17 00:00:00 2001 From: paulc Date: Thu, 12 Jan 2006 22:41:37 +0000 Subject: [PATCH] Improved one debug message. git-svn-id: http://yate.null.ro/svn/yate/trunk@644 acf43c95-373e-0410-b603-e72c3f656dc1 --- engine/Channel.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/engine/Channel.cpp b/engine/Channel.cpp index 804b6fd2..c16854d3 100644 --- a/engine/Channel.cpp +++ b/engine/Channel.cpp @@ -904,8 +904,8 @@ void Driver::dropAll(Message &msg) unlock(); if (!c) break; - DDebug(this,DebugAll,"Dropping %s channel %p [%p]", - name().c_str(),static_cast(c),this); + DDebug(this,DebugAll,"Dropping %s channel '%s' @%p [%p]", + name().c_str(),c->id().c_str(),static_cast(c),this); c->msgDrop(msg,reason); c = 0; lock();