aboutsummaryrefslogtreecommitdiff
path: root/externals/ace/Logging_Strategy.h
diff options
context:
space:
mode:
authorsilinoron <none@none>2010-08-15 13:21:05 -0700
committersilinoron <none@none>2010-08-15 13:21:05 -0700
commit4d5296299b7a72c37cda56bfa885c82167066c3c (patch)
tree2936b23000015173a0c2d82907df9ce7fdc8f785 /externals/ace/Logging_Strategy.h
parente3b8a5923d5e5512cfe6e0f02246d22146691008 (diff)
Backed out changeset: 6b66f86b01e4
Should fix windows compile. Blame me and click (but mostly click) --HG-- branch : trunk
Diffstat (limited to 'externals/ace/Logging_Strategy.h')
-rw-r--r--externals/ace/Logging_Strategy.h17
1 files changed, 8 insertions, 9 deletions
diff --git a/externals/ace/Logging_Strategy.h b/externals/ace/Logging_Strategy.h
index 7792c106121..00a50eae082 100644
--- a/externals/ace/Logging_Strategy.h
+++ b/externals/ace/Logging_Strategy.h
@@ -4,7 +4,7 @@
/**
* @file Logging_Strategy.h
*
- * $Id: Logging_Strategy.h 91064 2010-07-12 10:11:24Z johnnyw $
+ * $Id: Logging_Strategy.h 89512 2010-03-17 14:42:24Z vzykov $
*
* @author Prashant Jain <pjain@cs.wustl.edu>
* @author Orlando Ribeiro <oribeiro@inescporto.pt>
@@ -30,8 +30,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL
/**
* @class ACE_Logging_Strategy
*
- * @brief
- * This class provides a way to dynamically configure the ACE logging
+ * @brief This class provides a way to dynamically configure the ACE logging
* mechanism at run time as well as enable the mechanisms for limiting
* log file size and log file backup/rotation capability.
*
@@ -171,16 +170,16 @@ protected:
/// Program name to be used for %n format specifier.
ACE_TCHAR *program_name_;
- /// If true then wipeout the logfile, otherwise append to it.
- /// Default value is false.
+ /// If non-0 then wipeout the logfile, otherwise append to it.
+ /// Default value is 0.
bool wipeout_logfile_;
- /// If true we have a maximum number of log files we can write.
- /// Default value is false, i.e., no maximum number.
+ /// If non-0 we have a maximum number of log files we can write.
+ /// Default value is 0, i.e., no maximum number.
bool fixed_number_;
- /// If true we order the files as we rotate them. Default value
- /// is false, i.e., we do not rotate files by default.
+ /// If non-0 we order the files as we rotate them. Default value
+ /// is 0, i.e., we do not rotate files by default.
bool order_files_;
/// This tells us in what file we last wrote. It will be increased