summaryrefslogtreecommitdiff
path: root/channels/h323
diff options
context:
space:
mode:
authorMark Michelson <mmichelson@digium.com>2010-05-24 22:05:15 +0000
committerMark Michelson <mmichelson@digium.com>2010-05-24 22:05:15 +0000
commitc5be9d22473aa965309f3b05ae2a1b8be2c85af2 (patch)
tree0be0879b89ce8f3f534ba4c8d4b8dd5877ed8285 /channels/h323
parentf908dd984cdf3bb6b1804ec780612bfc58b786e1 (diff)
Print openh323 log to the Asterisk console.
(closes issue #17109) Reported by: under Patches: logstream.diff uploaded by under (license 914) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@265451 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels/h323')
-rw-r--r--channels/h323/ast_h323.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/channels/h323/ast_h323.cxx b/channels/h323/ast_h323.cxx
index e98592d7d..c068389f8 100644
--- a/channels/h323/ast_h323.cxx
+++ b/channels/h323/ast_h323.cxx
@@ -2257,6 +2257,7 @@ void h323_end_point_create(void)
{
channelsOpen = 0;
logstream = new PAsteriskLog();
+ PTrace::SetStream(logstream);
endPoint = new MyH323EndPoint();
}
@@ -2672,6 +2673,7 @@ void h323_end_process(void)
close(_timerChangePipe[1]);
#endif
if (logstream) {
+ PTrace::SetStream(NULL);
delete logstream;
logstream = NULL;
}