summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1999-03-20 17:08:25 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1999-03-20 17:08:25 +0000
commit0d69d2f063cf7181094ef3109856a8421b5238fa (patch)
tree3d15cfb6848b299528674cfd3a6a7b12a0b60353
parentd0d3ed12bbc1d557e42206685acea1f4045f5630 (diff)
downloadATCD-0d69d2f063cf7181094ef3109856a8421b5238fa.tar.gz
.
-rw-r--r--TAO/ChangeLog-99c6
-rw-r--r--TAO/tao/ORB.cpp7
2 files changed, 10 insertions, 3 deletions
diff --git a/TAO/ChangeLog-99c b/TAO/ChangeLog-99c
index 129619f08ac..6642ba02dc5 100644
--- a/TAO/ChangeLog-99c
+++ b/TAO/ChangeLog-99c
@@ -1,3 +1,9 @@
+Sat Mar 20 11:06:16 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
+
+ * tao/ORB.cpp (multicast_query): Only print an error message if
+ the TAO_debug level is > 0. Also, make sure to terminate the
+ line with '\n'. Thanks to Russ Noseworthy for reporting this.
+
Sat Mar 20 01:34:28 1999 Jeff Parsons <parsons@cs.wustl.edu>
* tao/Timeprobe.h:
diff --git a/TAO/tao/ORB.cpp b/TAO/tao/ORB.cpp
index e9fa0224c07..3b7cef53468 100644
--- a/TAO/tao/ORB.cpp
+++ b/TAO/tao/ORB.cpp
@@ -726,9 +726,10 @@ CORBA_ORB::multicast_query (char *buf,
// Check for errors.
if (result == -1)
{
- ACE_ERROR ((LM_ERROR,
- "%p",
- "error reading IIOP multicast response"));
+ if (TAO_debug_level > 0)
+ ACE_ERROR ((LM_ERROR,
+ "%p\n",
+ "error reading IIOP multicast response"));
break;
}
// Success!