summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>2007-03-03 19:35:45 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>2007-03-03 19:35:45 +0000
commit96602e3755f06435a11ccaa8158a7aa47df6d174 (patch)
tree02376a5e08bd2847aaa57adb05965ef659d59666
parent5dec83425dfe366426c856575b25c3d7d903af8f (diff)
downloadATCD-96602e3755f06435a11ccaa8158a7aa47df6d174.tar.gz
ChangeLogTag:Sat
-rw-r--r--ACE/ChangeLog6
-rw-r--r--ACE/THANKS1
-rw-r--r--ACE/ace/Log_Msg.h12
3 files changed, 13 insertions, 6 deletions
diff --git a/ACE/ChangeLog b/ACE/ChangeLog
index 80aac856596..0c352b68232 100644
--- a/ACE/ChangeLog
+++ b/ACE/ChangeLog
@@ -89,6 +89,12 @@ Fri Mar 2 17:48:09 UTC 2007 Ossama Othman <ossama_othman at symantec dot com>
Fixed one more typo in the ACE_U_LongLong partial specialization
of this functor. Also corrected truncation logic.
+Thu Mar 1 16:30:13 UTC 2007 Douglas C. Schmidt <schmidt@dre.vanderbilt.edu>
+
+ * ace/Log_Msg.h (ACE_Log_Msg): Updated the document to remove the
+ claim that stdout can be used. Thanks to Ian C White
+ <Ian_C_White at raytheon dot com> for reporting this.
+
Thu Mar 1 13:15:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-hpux-11.00.h:
diff --git a/ACE/THANKS b/ACE/THANKS
index 926aa72eff6..2977867154a 100644
--- a/ACE/THANKS
+++ b/ACE/THANKS
@@ -2179,6 +2179,7 @@ Yves Alloyer <alloyer at ipanematech dot com>
Waba <waba-ace at waba dot be>
Scott Mark <sjm at pobox dot com>
Bjoern Rasmussen <bjoern.d.rasmussen at gmail dot com>
+Ian C White <Ian_C_White at raytheond dot com>
I would particularly like to thank Paul Stephenson, who worked with me
at Ericsson in the early 1990's. Paul devised the recursive Makefile
diff --git a/ACE/ace/Log_Msg.h b/ACE/ace/Log_Msg.h
index 4416df98711..a63037d6870 100644
--- a/ACE/ace/Log_Msg.h
+++ b/ACE/ace/Log_Msg.h
@@ -123,12 +123,12 @@ class ACE_Log_Record;
*
* This class is very flexible since it allows formatted error
* messages to be printed in a thread-safe manner to various
- * locations, such as stdout, stderr, cerr, a distributed logger, etc.
- * The current message is also kept in a thread-specific storage
- * location (threads spawned using ACE_Thread_Manager automatically get
- * an ACE_Log_Msg object that inherits the spawning thread's settings), which
- * can be used to communicate errors between framework methods and
- * callers. A message is logged by the log() method, only if the
+ * locations, such as stderr, cerr, a distributed logger, etc. The
+ * current message is also kept in a thread-specific storage location
+ * (threads spawned using ACE_Thread_Manager automatically get an
+ * ACE_Log_Msg object that inherits the spawning thread's settings),
+ * which can be used to communicate errors between framework methods
+ * and callers. A message is logged by the log() method, only if the
* message priority is currently enabled. Moreover, only the current
* log message is stored here -- it will be overwritten by the
* subsequent call to log().