From: Jeremy McNamara Date: Wed, 4 Jun 2003 07:14:10 +0000 (+0000) Subject: add print showing which H.323ID we are gonna use X-Git-Tag: 0.5.0~424 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a13bf9ab7ad0176315242229586b3ecb8df3756e;p=thirdparty%2Fasterisk.git add print showing which H.323ID we are gonna use git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1072 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/h323/ast_h323.cpp b/channels/h323/ast_h323.cpp index da073d7706..b5c4c47dac 100755 --- a/channels/h323/ast_h323.cpp +++ b/channels/h323/ast_h323.cpp @@ -877,6 +877,11 @@ int h323_set_alias(struct oh323_alias *alias) void h323_set_id(char *id) { PString h323id(id); + + if (h323debug) { + cout << " == Using " << h323id << " as our H.323ID for this call" << endl; + } + /* EVIL HACK */ endPoint->SetLocalUserName(h323id); }