summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Event/ECG_Simple_Mcast_EH.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Event/ECG_Simple_Mcast_EH.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/Event/ECG_Simple_Mcast_EH.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Event/ECG_Simple_Mcast_EH.cpp b/TAO/orbsvcs/orbsvcs/Event/ECG_Simple_Mcast_EH.cpp
index 1e101055c0f..202c2540f6b 100644
--- a/TAO/orbsvcs/orbsvcs/Event/ECG_Simple_Mcast_EH.cpp
+++ b/TAO/orbsvcs/orbsvcs/Event/ECG_Simple_Mcast_EH.cpp
@@ -1,7 +1,7 @@
// $Id$
#include "orbsvcs/Event/ECG_Simple_Mcast_EH.h"
-#include "ace/Log_Msg.h"
+#include "orbsvcs/Log_Macros.h"
#include "ace/Reactor.h"
#include "ace/os_include/os_fcntl.h"
@@ -30,7 +30,7 @@ TAO_ECG_Simple_Mcast_EH::open (const char * mcast_addr,
ACE_INET_Addr mcast_group;
if (mcast_group.set (mcast_addr) != 0)
- ACE_ERROR_RETURN ((LM_ERROR,
+ ORBSVCS_ERROR_RETURN ((LM_ERROR,
"Unable to open mcast handler: "
"error using specified address %s "
"in ACE_INET.set ().\n",
@@ -38,7 +38,7 @@ TAO_ECG_Simple_Mcast_EH::open (const char * mcast_addr,
-1);
if (this->dgram_.join (mcast_group, 1, net_if) != 0)
- ACE_ERROR_RETURN ((LM_ERROR,
+ ORBSVCS_ERROR_RETURN ((LM_ERROR,
"Unable to open mcast handler: error "
"joining to %s\n",
mcast_addr),
@@ -52,7 +52,7 @@ TAO_ECG_Simple_Mcast_EH::open (const char * mcast_addr,
ACE_Event_Handler::READ_MASK))
{
this->dgram_.close ();
- ACE_ERROR_RETURN ((LM_ERROR,
+ ORBSVCS_ERROR_RETURN ((LM_ERROR,
"Cannot register handler with reactor.\n"),
-1);
}
@@ -74,13 +74,13 @@ TAO_ECG_Simple_Mcast_EH::shutdown (void)
ACE_Event_Handler::READ_MASK);
}
if (result != 0)
- ACE_ERROR ((LM_ERROR,
+ ORBSVCS_ERROR ((LM_ERROR,
"Unable to deregister handler from reactor "
"on shutdown.\n"));
result = this->dgram_.close ();
if (result != 0)
- ACE_ERROR ((LM_ERROR,
+ ORBSVCS_ERROR ((LM_ERROR,
"Unable to close mcast receiving dgram "
"on shutdown.\n"));