diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2006-12-19 19:44:44 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2006-12-19 19:44:44 +0000 |
commit | 50cb4237b08e7519c2b848ee2479df965dfd148a (patch) | |
tree | 04cf9e0a40b68cfc9429532961ba11b12dc3950d /cpp/src/Ice/LoggerI.h | |
parent | typo (diff) | |
download | ice-50cb4237b08e7519c2b848ee2479df965dfd148a.tar.bz2 ice-50cb4237b08e7519c2b848ee2479df965dfd148a.tar.xz ice-50cb4237b08e7519c2b848ee2479df965dfd148a.zip |
Added Ice.Logger.DateFormat property
Diffstat (limited to 'cpp/src/Ice/LoggerI.h')
-rw-r--r-- | cpp/src/Ice/LoggerI.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Ice/LoggerI.h b/cpp/src/Ice/LoggerI.h index 513b0b744ad..503f1f0498a 100644 --- a/cpp/src/Ice/LoggerI.h +++ b/cpp/src/Ice/LoggerI.h @@ -19,7 +19,7 @@ class LoggerI : public Logger { public: - LoggerI(const std::string&); + LoggerI(const std::string&, const std::string&); virtual void print(const std::string&); virtual void trace(const std::string&, const std::string&); @@ -29,7 +29,7 @@ public: private: std::string _prefix; - std::string _emptyPrefix; + std::string _dateFormat; }; } |