diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 2001-02-16 11:40:36 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 2001-02-16 11:40:36 +0000 |
commit | 40e3a6846e4a79387408a2f91b81d6c44c0dc6f1 (patch) | |
tree | e084d39760f276eca5517e6f18eed360e6c5cefc /tests/Log_Msg_Test.cpp | |
parent | 066196ddd39c87662a60edee10740875ffe5b094 (diff) | |
download | ATCD-40e3a6846e4a79387408a2f91b81d6c44c0dc6f1.tar.gz |
ChangeLogTag:Fri Feb 16 05:37:47 2001 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
Diffstat (limited to 'tests/Log_Msg_Test.cpp')
-rw-r--r-- | tests/Log_Msg_Test.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/Log_Msg_Test.cpp b/tests/Log_Msg_Test.cpp index cffc6454f92..99331ef2f6a 100644 --- a/tests/Log_Msg_Test.cpp +++ b/tests/Log_Msg_Test.cpp @@ -276,10 +276,12 @@ test_log_msg_features (const ACE_TCHAR *program) sizeof array); // Disable the LM_DEBUG and LM_INFO messages. - u_long priority_mask = ACE_LOG_MSG->priority_mask (); + u_long priority_mask = + ACE_LOG_MSG->priority_mask (ACE_Log_Msg::PROCESS); ACE_CLR_BITS (priority_mask, LM_DEBUG | LM_INFO); - ACE_LOG_MSG->priority_mask (priority_mask); + ACE_LOG_MSG->priority_mask (priority_mask, + ACE_Log_Msg::PROCESS); ACE_DEBUG ((LM_INFO, "This LM_INFO message should not print!\n")); |