diff options
author | Mike Buland <eichlan@xagasoft.com> | 2006-05-03 06:49:30 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2006-05-03 06:49:30 +0000 |
commit | 96b00553a0ffe6bb34af6ad15e1cfc2bed67bd75 (patch) | |
tree | a930fe51f01a7400fe97b46db2fcfcdc1f2712da /src/multilogtext.h | |
parent | 33fef4a17290e7872293d8cc173bec826f24001c (diff) | |
download | libbu++-96b00553a0ffe6bb34af6ad15e1cfc2bed67bd75.tar.gz libbu++-96b00553a0ffe6bb34af6ad15e1cfc2bed67bd75.tar.bz2 libbu++-96b00553a0ffe6bb34af6ad15e1cfc2bed67bd75.tar.xz libbu++-96b00553a0ffe6bb34af6ad15e1cfc2bed67bd75.zip |
Added a simple test for the log system, and switched the multilog to the new
singleton system, which unfortunately changed it's API slightly. Now it's not
a pointer from the singleton, but I did add a new macro to make most usage of it
even easier.
Diffstat (limited to 'src/multilogtext.h')
-rw-r--r-- | src/multilogtext.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/multilogtext.h b/src/multilogtext.h index aa32405..8994b68 100644 --- a/src/multilogtext.h +++ b/src/multilogtext.h | |||
@@ -34,7 +34,7 @@ public: | |||
34 | *@param lpFormat The format using the above specifications to be used for | 34 | *@param lpFormat The format using the above specifications to be used for |
35 | * every log entry. | 35 | * every log entry. |
36 | */ | 36 | */ |
37 | MultiLogText( const char *sFileName, const char *lpFormat ); | 37 | MultiLogText( const char *sFileName, const char *lpFormat, bool bRotateLog=false, int nMaxLogs=0 ); |
38 | 38 | ||
39 | /** | 39 | /** |
40 | * Construct a MultiLogText object around a specific file and format. | 40 | * Construct a MultiLogText object around a specific file and format. |