diff options
author | huangh <huangh@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2013-04-11 18:07:48 +0000 |
---|---|---|
committer | huangh <huangh@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2013-04-11 18:07:48 +0000 |
commit | b73cdef9288bfcb88b45c1d320d377b03007d1b3 (patch) | |
tree | 991b03a4a95b1ed7c995b43398f71b7a7cd2c2f7 /TAO/tao/ORB.cpp | |
parent | 5be31b75376b2a62e9dbb60b2c179bea44f5e10e (diff) | |
download | ATCD-b73cdef9288bfcb88b45c1d320d377b03007d1b3.tar.gz |
Thu Apr 11 18:03:24 UTC 2013 Huang-Ming Huang <huangh@ociweb.com>
Diffstat (limited to 'TAO/tao/ORB.cpp')
-rw-r--r-- | TAO/tao/ORB.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/TAO/tao/ORB.cpp b/TAO/tao/ORB.cpp index c668ad3813e..84c99140e01 100644 --- a/TAO/tao/ORB.cpp +++ b/TAO/tao/ORB.cpp @@ -156,7 +156,7 @@ CORBA::ORB::destroy (void) if (TAO_debug_level > 2) { - ACE_DEBUG ((LM_DEBUG, + TAOLIB_DEBUG ((LM_DEBUG, ACE_TEXT ("CORBA::ORB::destroy() called on ORB <%C>.\n"), this->orb_core ()->orbid ())); } @@ -251,7 +251,7 @@ CORBA::ORB::create_list (CORBA::Long count, CORBA::NVList_ptr &new_list) if (adapter == 0) { - ACE_ERROR ((LM_ERROR, + TAOLIB_ERROR ((LM_ERROR, ACE_TEXT ("(%P|%t) %p\n"), ACE_TEXT ("ORB unable to find the ") ACE_TEXT ("NVList Adapter instance"))); @@ -309,7 +309,7 @@ CORBA::ORB::create_named_value (CORBA::NamedValue_ptr &nv) if (adapter == 0) { - ACE_ERROR ((LM_ERROR, + TAOLIB_ERROR ((LM_ERROR, ACE_TEXT ("(%P|%t) %p\n"), ACE_TEXT ("ORB unable to find the ") ACE_TEXT ("NVList Adapter instance"))); @@ -1168,7 +1168,7 @@ namespace TAO return oc->configuration (); if (TAO_debug_level > 0) - ACE_ERROR ((LM_ERROR, + TAOLIB_ERROR ((LM_ERROR, ACE_TEXT ("ERROR: Unable to find ORB: %s. Invalid shared ") ACE_TEXT ("configuration argument \"%s\"\n"), orbid.c_str (), arg)); @@ -1183,7 +1183,7 @@ namespace TAO // Unknown value if (TAO_debug_level > 0) - ACE_ERROR ((LM_ERROR, + TAOLIB_ERROR ((LM_ERROR, ACE_TEXT ("ERROR: -ORBGestalt unknown value <%s>\n"), orbconfig_string.c_str())); @@ -1324,7 +1324,7 @@ CORBA::ORB_init (int &argc, ACE_TCHAR *argv[], const char *orbid) // Check for errors returned from <TAO_Internal::open_services>. if (result != 0 && errno != ENOENT) { - ACE_ERROR ((LM_ERROR, + TAOLIB_ERROR ((LM_ERROR, ACE_TEXT ("TAO (%P|%t) %p\n"), ACE_TEXT ("Unable to initialize the ") ACE_TEXT ("Service Configurator"))); @@ -1365,7 +1365,7 @@ CORBA::ORB_init (int &argc, ACE_TCHAR *argv[], const char *orbid) if (TAO_debug_level > 2) { - ACE_DEBUG ((LM_DEBUG, + TAOLIB_DEBUG ((LM_DEBUG, ACE_TEXT("TAO (%P|%t) - Created new ORB <%s>\n"), orbid_string.c_str ())); } @@ -1485,7 +1485,7 @@ CORBA::ORB::object_to_string (CORBA::Object_ptr obj) if (CORBA::is_nil (obj) || obj->_stubobj () == 0) { if (TAO_debug_level > 0) - ACE_ERROR ((LM_ERROR, + TAOLIB_ERROR ((LM_ERROR, ACE_TEXT ("Nil object reference or TAO_Stub ") ACE_TEXT ("pointer is zero when converting\n") ACE_TEXT ("object reference to URL IOR.\n"))); @@ -1508,7 +1508,7 @@ CORBA::ORB::object_to_string (CORBA::Object_ptr obj) } if (TAO_debug_level > 0) - ACE_ERROR ((LM_ERROR, + TAOLIB_ERROR ((LM_ERROR, ACE_TEXT ("TAO (%P|%t) - Cannot stringify given ") ACE_TEXT ("object. No or only unknown profiles.\n"))); |