summaryrefslogtreecommitdiff
path: root/netsvcs/lib
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1999-12-08 05:14:25 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1999-12-08 05:14:25 +0000
commit1ff5bb8e5e78a09199e084d8021f054db5396916 (patch)
tree1452a65f2b784d0f0fece417fc008ab0f3a3bac1 /netsvcs/lib
parent528cc71a7dffdacba3f2a3a9803c9c4afa358a65 (diff)
downloadATCD-1ff5bb8e5e78a09199e084d8021f054db5396916.tar.gz
ChangeLogTag:Tue Dec 7 22:53:01 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
Diffstat (limited to 'netsvcs/lib')
-rw-r--r--netsvcs/lib/Client_Logging_Handler.cpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/netsvcs/lib/Client_Logging_Handler.cpp b/netsvcs/lib/Client_Logging_Handler.cpp
index f5c58d08ab5..60741cd7f3a 100644
--- a/netsvcs/lib/Client_Logging_Handler.cpp
+++ b/netsvcs/lib/Client_Logging_Handler.cpp
@@ -230,10 +230,12 @@ ACE_Client_Logging_Handler::send (ACE_Log_Record &log_record)
if (ACE::send (this->logging_output_,
(char *) &log_record,
len) == -1)
- // Switch over to logging to stderr for now. Eventually,
- // we'll try to queue up the message, try to reestablish a
- // connection, and then send the queued data once we've
- // reconnect to the logging server.
+ // Switch over to logging to stderr for now. At some point,
+ // we'll improve the implementation to queue up the message,
+ // try to reestablish a connection, and then send the queued
+ // data once we've reconnect to the logging server. If you'd
+ // like to implement this functionality and contribute it back
+ // to ACE that would be great!
this->logging_output_ = ACE_STDERR;
}