add print showing which H.323ID we are gonna use
authorJeremy McNamara <jj@nufone.net>
Wed, 4 Jun 2003 07:14:10 +0000 (07:14 +0000)
committerJeremy McNamara <jj@nufone.net>
Wed, 4 Jun 2003 07:14:10 +0000 (07:14 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1072 65c4cc65-6c06-0410-ace0-fbb531ad65f3

channels/h323/ast_h323.cpp

index da073d7..b5c4c47 100755 (executable)
@@ -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);
 }