summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam R. Otte <wotte@dre.vanderbilt.edu>2009-02-04 21:22:02 +0000
committerWilliam R. Otte <wotte@dre.vanderbilt.edu>2009-02-04 21:22:02 +0000
commitc296537d74593ad83d08aaae385e33143185d592 (patch)
treeffb4c149c19f295b37d4cc822316c607975c0803
parente9ab156700a574d5d8f29ae7e529c327eb551002 (diff)
downloadATCD-c296537d74593ad83d08aaae385e33143185d592.tar.gz
Wed Feb 4 21:18:18 UTC 2009 William R. Otte <wotte@dre.vanderbilt.edu>
-rw-r--r--flat/CIAO/ChangeLog14
-rw-r--r--flat/CIAO/ciao/Containers/Container_Base.cpp6
-rwxr-xr-xflat/CIAO/examples/Hello/descriptors/run_test.pl2
3 files changed, 16 insertions, 6 deletions
diff --git a/flat/CIAO/ChangeLog b/flat/CIAO/ChangeLog
index d7d0b6ea28b..31de1912e43 100644
--- a/flat/CIAO/ChangeLog
+++ b/flat/CIAO/ChangeLog
@@ -1,11 +1,21 @@
+Wed Feb 4 21:18:18 UTC 2009 William R. Otte <wotte@dre.vanderbilt.edu>
+
+ * ciao/Containers/Container_Base.cpp:
+
+ Demoted the logging priority of failure to find a receptacle policy.
+
+ * examples/Hello/descriptors/run_test.pl:
+
+ removed some extraneous logging.
+
Wed Feb 4 19:07:27 UTC 2009 William R. Otte <wotte@dre.vanderbilt.edu>
* DAnCE/NodeApplication/NodeApplication_Impl.cpp:
* DAnCE/NodeManager/Node_Manager_Module.cpp:
* examples/Hello/descriptors/run_test.pl:
- fixing nameservice support.
-
+ fixing nameservice support.
+
Wed Feb 4 01:26:49 UTC 2009 William R. Otte <wotte@dre.vanderbilt.edu>
* CIAO_TAO.mwc:
diff --git a/flat/CIAO/ciao/Containers/Container_Base.cpp b/flat/CIAO/ciao/Containers/Container_Base.cpp
index 88c669fe819..f34dfe6986a 100644
--- a/flat/CIAO/ciao/Containers/Container_Base.cpp
+++ b/flat/CIAO/ciao/Containers/Container_Base.cpp
@@ -39,9 +39,9 @@ namespace CIAO
if (this->rec_pol_map_.find (name, policy_list) != 0)
{
- CIAO_ERROR ((LM_WARNING, CLINFO
- "Container_i::get_receptacle_policy - Unable to find policies "
- "for the receptacle %C\n",
+ CIAO_ERROR ((LM_DEBUG, CLINFO
+ "Container_i::get_receptacle_policy - No policies found "
+ "for the receptacle %s\n",
name));
}
diff --git a/flat/CIAO/examples/Hello/descriptors/run_test.pl b/flat/CIAO/examples/Hello/descriptors/run_test.pl
index d54b6c494d0..81811665eff 100755
--- a/flat/CIAO/examples/Hello/descriptors/run_test.pl
+++ b/flat/CIAO/examples/Hello/descriptors/run_test.pl
@@ -76,7 +76,7 @@ sub run_node_daemons {
$d_cmd = "$DAnCE/bin/dance_node_manager";
$d_param = "-ORBEndpoint $iiop -s $node_app -n $nodename=$iorfile -t 30 --instance-nc corbaloc:rir:/NameService";
- print "$d_param\n";
+
$Daemons[$i] = new PerlACE::Process ($d_cmd, $d_param);
$result = $Daemons[$i]->Spawn ();
push(@processes, $Daemons[$i]);