summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpradeep <pradeep@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-10-10 06:16:26 +0000
committerpradeep <pradeep@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-10-10 06:16:26 +0000
commita7833d8afa14ae5f1359383f1135e37a837f8c12 (patch)
treebd91b7a80282c8247fa7f6805609698a4cf896b1
parent5588c492f86d0ab1a45c2ccd13cf727642348471 (diff)
downloadATCD-a7833d8afa14ae5f1359383f1135e37a837f8c12.tar.gz
*** empty log message ***
-rw-r--r--TAO/ChangeLog-99c10
-rw-r--r--TAO/orbsvcs/orbsvcs/Log/Log_i.cpp11
2 files changed, 14 insertions, 7 deletions
diff --git a/TAO/ChangeLog-99c b/TAO/ChangeLog-99c
index a2bd21312d7..73ff851baa9 100644
--- a/TAO/ChangeLog-99c
+++ b/TAO/ChangeLog-99c
@@ -1,3 +1,13 @@
+Sun Oct 10 01:11:47 1999 Pradeep Gore <pradeep@flamenco.cs.wustl.edu>
+
+ * orbsvcs/examples/Log/Client/Makefile:
+ * orbsvcs/examples/Log/Client/TLS_Client.cpp:
+ * orbsvcs/examples/Log/Client/TLS_Client.h:
+ * orbsvcs/examples/Log/Client/main.cpp:
+ Added a simple example to show how to create a Log object and use it.
+ * orbsvcs/Logging_Service/README:
+ README to describe the Logging service.
+
Sat Oct 9 20:36:16 1999 Pradeep Gore <pradeep@flamenco.cs.wustl.edu>
* orbsvcs/orbsvcs/Makefile:
diff --git a/TAO/orbsvcs/orbsvcs/Log/Log_i.cpp b/TAO/orbsvcs/orbsvcs/Log/Log_i.cpp
index 0143e88060e..2dd2658d9e0 100644
--- a/TAO/orbsvcs/orbsvcs/Log/Log_i.cpp
+++ b/TAO/orbsvcs/orbsvcs/Log/Log_i.cpp
@@ -368,19 +368,16 @@ Log_i::query_i (const char *constraint,
break;
}
- ACE_DEBUG ((LM_DEBUG,"Query::id = %ull, Time = %ull\n",
- hash_entry->int_id_.id,
- hash_entry->int_id_.time));
-
// Use an evaluator.
TAO_Log_Constraint_Evaluator evaluator (hash_entry->int_id_);
// Does it match the constraint?
if (interpreter.evaluate (evaluator) == 1)
{
- ACE_DEBUG ((LM_DEBUG,"Matched constraint! d = %ull, Time = %ull\n",
- hash_entry->int_id_.id,
- hash_entry->int_id_.time));
+ if (TAO_debug_level > 0)
+ ACE_DEBUG ((LM_DEBUG,"Matched constraint! d = %Q, Time = %Q\n",
+ hash_entry->int_id_.id,
+ hash_entry->int_id_.time));
(*rec_list)[count] = hash_entry->int_id_;
// copy the log record.