diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1999-12-22 14:50:19 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1999-12-22 14:50:19 +0000 |
commit | b23d09b9902403e1b1fabd5518b849808a27b4b0 (patch) | |
tree | 6233e8636c75a74c41a570d433cd2cafe3af2dd5 /tests/Log_Msg_Test.cpp | |
parent | 2850212377a99693e4004141403e64a07c553a8c (diff) | |
download | ATCD-b23d09b9902403e1b1fabd5518b849808a27b4b0.tar.gz |
ChangeLogTag:Wed Dec 22 08:44:56 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
Diffstat (limited to 'tests/Log_Msg_Test.cpp')
-rw-r--r-- | tests/Log_Msg_Test.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/Log_Msg_Test.cpp b/tests/Log_Msg_Test.cpp index 65134b5cce3..bbb6821cafe 100644 --- a/tests/Log_Msg_Test.cpp +++ b/tests/Log_Msg_Test.cpp @@ -94,11 +94,13 @@ Logger::log (ACE_Log_Record &log_record) ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("Logger::log->%s\n"), log_record.msg_data ())); +#if !defined (ACE_LACKS_IOSTREAM_TOTALLY) else *ace_file_stream::instance ()->output_file () << "Recursive Logger callback = " << log_record.msg_data () << endl; +#endif /* ACE_LACKS_IOSTREAM_TOTALLY */ } else { @@ -112,11 +114,13 @@ Logger::log (ACE_Log_Record &log_record) ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("Logger::log->%s\n"), verbose_msg)); +#if !defined (ACE_LACKS_IOSTREAM_TOTALLY) else *ace_file_stream::instance ()->output_file () << "Recursive Logger callback = " << log_record.msg_data () << endl; +#endif /* ACE_LACKS_IOSTREAM_TOTALLY */ } } |