diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-03-25 16:06:59 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-03-25 16:06:59 +0000 |
commit | 6beda82e6cefd7cadb746fb478a2d225943bcfb3 (patch) | |
tree | 737aacc733f8422d04c431f0d9d04ad281e0feaa /examples/Reactor | |
parent | f085eb0c2f88cfa98a08288cc61c88c8c084286a (diff) | |
download | ATCD-6beda82e6cefd7cadb746fb478a2d225943bcfb3.tar.gz |
Log_Wrapper::LOG_DEBUG instead of LM_DEBUG
Diffstat (limited to 'examples/Reactor')
-rw-r--r-- | examples/Reactor/Multicast/client.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/Reactor/Multicast/client.cpp b/examples/Reactor/Multicast/client.cpp index c9bce1b45a6..db85cc16a8f 100644 --- a/examples/Reactor/Multicast/client.cpp +++ b/examples/Reactor/Multicast/client.cpp @@ -71,7 +71,7 @@ main (int argc, char **argv) ACE_OS::memset (buf, 1, max_message_size); while (iterations--) - if (log.log_message (Log_Wrapper::LM_DEBUG, buf) == -1) + if (log.log_message (Log_Wrapper::LOG_DEBUG, buf) == -1) ACE_ERROR_RETURN ((LM_ERROR, "%p\n" "log"), -1); } @@ -107,7 +107,7 @@ main (int argc, char **argv) ACE_OS::sleep (1); // Send the message to the logger. - if (log.log_message (Log_Wrapper::LM_DEBUG, buf) == -1) + if (log.log_message (Log_Wrapper::LOG_DEBUG, buf) == -1) ACE_ERROR_RETURN ((LM_ERROR, "%p\n" "log_message"), -1); ACE_DEBUG ((LM_DEBUG, "finished sending message %d\n", count++)); } |