summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/ImplRepo_Service
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2018-12-04 13:13:35 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2018-12-04 13:13:35 +0100
commit3d51ee9c9198600b863e9eeee9c9d112d34dc406 (patch)
tree800b54897bdf6c008fb94d5b4bd48c211e13e477 /TAO/orbsvcs/ImplRepo_Service
parent86bae273c777f0a57d2f4b92df86003882d12b68 (diff)
downloadATCD-3d51ee9c9198600b863e9eeee9c9d112d34dc406.tar.gz
Log error messages with an error macro
* TAO/orbsvcs/ImplRepo_Service/ImR_Activator_i.cpp:
Diffstat (limited to 'TAO/orbsvcs/ImplRepo_Service')
-rw-r--r--TAO/orbsvcs/ImplRepo_Service/ImR_Activator_i.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/TAO/orbsvcs/ImplRepo_Service/ImR_Activator_i.cpp b/TAO/orbsvcs/ImplRepo_Service/ImR_Activator_i.cpp
index 004f62de9e5..80dcebb6a8d 100644
--- a/TAO/orbsvcs/ImplRepo_Service/ImR_Activator_i.cpp
+++ b/TAO/orbsvcs/ImplRepo_Service/ImR_Activator_i.cpp
@@ -257,13 +257,13 @@ ImR_Activator_i::fini (void)
catch (const CORBA::COMM_FAILURE&)
{
if (debug_ > 1)
- ORBSVCS_DEBUG ((LM_DEBUG,
+ ORBSVCS_ERROR ((LM_ERROR,
ACE_TEXT ("(%P|%t) ImR Activator: COMM_FAILURE, unable to unregister from ImR.\n")));
}
catch (const CORBA::TRANSIENT&)
{
if (debug_ > 1)
- ORBSVCS_DEBUG ((LM_DEBUG,
+ ORBSVCS_ERROR ((LM_ERROR,
ACE_TEXT ("(%P|%t) ImR Activator: TRANSIENT, unable to unregister from ImR.\n")));
}
catch (const CORBA::Exception& ex)
@@ -469,7 +469,7 @@ ImR_Activator_i::start_server(const char* name,
{
if (debug_ > 0)
{
- ORBSVCS_DEBUG((LM_DEBUG,
+ ORBSVCS_ERROR((LM_ERROR,
"(%P|%t) ImR Activator: Unique instance already running pid <%d>\n",
static_cast<int> (pid)));
}
@@ -567,7 +567,7 @@ ImR_Activator_i::start_server(const char* name,
if (debug_ > 1)
{
ex._tao_print_exception ("ImR_Activator_i::start_server");
- ORBSVCS_DEBUG ((LM_DEBUG,
+ ORBSVCS_ERROR ((LM_ERROR,
ACE_TEXT ("(%P|%t) ImR Activator: From locator::spawn_pid for server <%C> pid <%d>\n"),
name,
static_cast<int> (pid)));
@@ -621,7 +621,7 @@ ImR_Activator_i::handle_exit_i (pid_t pid)
if (debug_ > 1)
{
ex._tao_print_exception ("ImR_Activator_i::handle_exit_i");
- ORBSVCS_DEBUG ((LM_DEBUG,
+ ORBSVCS_ERROR ((LM_ERROR,
ACE_TEXT ("(%P|%t) ImR Activator: from locator::child_death_pid for server <%C> pid <%d>\n"),
name.c_str (),
static_cast<int> (pid)));