summaryrefslogtreecommitdiff
path: root/examples/Reactor
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-03-25 16:06:59 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-03-25 16:06:59 +0000
commit6beda82e6cefd7cadb746fb478a2d225943bcfb3 (patch)
tree737aacc733f8422d04c431f0d9d04ad281e0feaa /examples/Reactor
parentf085eb0c2f88cfa98a08288cc61c88c8c084286a (diff)
downloadATCD-6beda82e6cefd7cadb746fb478a2d225943bcfb3.tar.gz
Log_Wrapper::LOG_DEBUG instead of LM_DEBUG
Diffstat (limited to 'examples/Reactor')
-rw-r--r--examples/Reactor/Multicast/client.cpp4
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++));
}