summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Event/ECG_UDP_Sender.cpp
diff options
context:
space:
mode:
authormitza <mitza@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2013-04-12 22:47:02 +0000
committermitza <mitza@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2013-04-12 22:47:02 +0000
commit4763430ca49834f855cb538a5a867ae43a0a403e (patch)
tree51fd3bf65fca69b840033a5a5dd7d086c96a4194 /TAO/orbsvcs/orbsvcs/Event/ECG_UDP_Sender.cpp
parent9d5564b342e794dc79bcf4ffe3a1381086b8d960 (diff)
downloadATCD-4763430ca49834f855cb538a5a867ae43a0a403e.tar.gz
ChangeLogTag: Fri Apr 12 22:41:43 UTC 2013 Adam Mitz <mitza@ociweb.com>
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Event/ECG_UDP_Sender.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/Event/ECG_UDP_Sender.cpp11
1 files changed, 6 insertions, 5 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Event/ECG_UDP_Sender.cpp b/TAO/orbsvcs/orbsvcs/Event/ECG_UDP_Sender.cpp
index 30078b9b547..7517514d8e3 100644
--- a/TAO/orbsvcs/orbsvcs/Event/ECG_UDP_Sender.cpp
+++ b/TAO/orbsvcs/orbsvcs/Event/ECG_UDP_Sender.cpp
@@ -9,6 +9,7 @@
*
*/
+#include "orbsvcs/Log_Macros.h"
#include "orbsvcs/Event/ECG_UDP_Sender.h"
#include "orbsvcs/Event_Utilities.h"
#include "tao/CDR.h"
@@ -30,14 +31,14 @@ TAO_ECG_UDP_Sender::init (RtecEventChannelAdmin::EventChannel_ptr lcl_ec,
{
if (CORBA::is_nil (lcl_ec))
{
- ACE_ERROR ((LM_ERROR, "TAO_ECG_UDP_Sender::init(): "
+ ORBSVCS_ERROR ((LM_ERROR, "TAO_ECG_UDP_Sender::init(): "
"<lcl_ec> argument is nil."));
throw CORBA::INTERNAL ();
}
if (CORBA::is_nil (addr_server))
{
- ACE_ERROR ((LM_ERROR, "TAO_ECG_UDP_Sender::init(): "
+ ORBSVCS_ERROR ((LM_ERROR, "TAO_ECG_UDP_Sender::init(): "
"address server argument is nil."));
throw CORBA::INTERNAL ();
}
@@ -57,7 +58,7 @@ TAO_ECG_UDP_Sender::connect (const RtecEventChannelAdmin::ConsumerQOS& sub)
if (CORBA::is_nil (this->lcl_ec_.in ()))
{
//FUZZ: disable check_for_lack_ACE_OS
- ACE_ERROR ((LM_ERROR, "Error initializing TAO_ECG_UDP_Sender: "
+ ORBSVCS_ERROR ((LM_ERROR, "Error initializing TAO_ECG_UDP_Sender: "
"init() has not been called before connect()."));
//FUZZ: enable check_for_lack_ACE_OS
@@ -66,7 +67,7 @@ TAO_ECG_UDP_Sender::connect (const RtecEventChannelAdmin::ConsumerQOS& sub)
if (sub.dependencies.length () == 0)
{
- ACE_ERROR ((LM_ERROR, "TAO_ECG_UDP_Sender::connect(): "
+ ORBSVCS_ERROR ((LM_ERROR, "TAO_ECG_UDP_Sender::connect(): "
"0-length subscriptions argument."));
throw CORBA::INTERNAL ();
}
@@ -161,7 +162,7 @@ TAO_ECG_UDP_Sender::push (const RtecEventComm::EventSet &events)
{
if (events.length () == 0)
{
- // ACE_DEBUG ((EC_FORMAT (DEBUG,
+ // ORBSVCS_DEBUG ((EC_FORMAT (DEBUG,
// "Nothing to multicast: "
// "0-length EventSet.")));
return;