summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2009-12-10 11:01:51 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2009-12-10 11:01:51 +0000
commit26e1b4ffa56543746d1c78365de2534c08cb4557 (patch)
treece79c30c6652782c237205603af5f39f16f40291
parent776a26c8a3fe8e95b5fc40081cd247e78d383655 (diff)
downloadATCD-26e1b4ffa56543746d1c78365de2534c08cb4557.tar.gz
Thu Dec 10 11:01:16 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* ciao/Containers/Servant_Activator.cpp: Extended logging
-rw-r--r--CIAO/ChangeLog5
-rw-r--r--CIAO/ciao/Containers/Servant_Activator.cpp10
2 files changed, 14 insertions, 1 deletions
diff --git a/CIAO/ChangeLog b/CIAO/ChangeLog
index 8f92b414270..71768f7fca7 100644
--- a/CIAO/ChangeLog
+++ b/CIAO/ChangeLog
@@ -1,3 +1,8 @@
+Thu Dec 10 11:01:16 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
+
+ * ciao/Containers/Servant_Activator.cpp:
+ Extended logging
+
Thu Dec 10 10:11:56 UTC 2009 Marcel Smit <msmit@remedy.nl>
* examples/Hello/descriptors/run_test_without_ns.pl:
diff --git a/CIAO/ciao/Containers/Servant_Activator.cpp b/CIAO/ciao/Containers/Servant_Activator.cpp
index b06a422e460..4c74fd32766 100644
--- a/CIAO/ciao/Containers/Servant_Activator.cpp
+++ b/CIAO/ciao/Containers/Servant_Activator.cpp
@@ -34,13 +34,21 @@ namespace CIAO
this->mutex_,
CORBA::NO_RESOURCES ());
+ CIAO_DEBUG ((LM_INFO, CLINFO
+ "Servant_Activator_i::update_port_activator, "
+ "Attempting to update port name [%C]\n",
+ str.in ()));
+
Port_Activators::iterator pa_iter = this->pa_.find (str.in ());
if (pa_iter != this->pa_.end ())
{
this->pa_.erase (pa_iter);
}
- else return false;
+ else
+ {
+ return false;
+ }
}
return true;