use_multiple_sinks.cpp
来自「ACE源码」· C++ 代码 · 共 37 行
CPP
37 行
// Use_Multiple_Sinks.cpp,v 1.2 2004/01/18 16:19:41 bala Exp
#include "ace/Log_Msg.h"
#include "ace/streams.h"
#if (_MSC_VER >= 1200) && (_MSC_VER < 1300)
#include <fstream>
#endif
int ACE_TMAIN (int, ACE_TCHAR *argv[])
{
// Output to default destination (stderr)
ACE_LOG_MSG->open (argv[0]);
ACE_TRACE (ACE_TEXT ("main"));
ACE_OSTREAM_TYPE *output =
(ACE_OSTREAM_TYPE *) new std::ofstream ("ostream.output.test");
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("%IThis will go to STDERR\n")));
ACE_LOG_MSG->open
(argv[0], ACE_Log_Msg::SYSLOG, ACE_TEXT ("syslogTest"));
ACE_LOG_MSG->set_flags (ACE_Log_Msg::STDERR);
ACE_DEBUG
((LM_DEBUG, ACE_TEXT ("%IThis goes to STDERR & syslog\n")));
ACE_LOG_MSG->msg_ostream (output, 0);
ACE_LOG_MSG->set_flags (ACE_Log_Msg::OSTREAM);
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("%IThis will go to STDERR, ")
ACE_TEXT ("syslog & an ostream\n")));
ACE_LOG_MSG->clr_flags (ACE_Log_Msg::OSTREAM);
delete output;
return 0;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?