diff options
author | Benoit Foucher <benoit@zeroc.com> | 2002-07-17 16:29:35 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2002-07-17 16:29:35 +0000 |
commit | a556e744b44a49bca47aaca909484fb2f7d8fae8 (patch) | |
tree | 59e0158c2a550dab07da96b2578a3b9b4e04891d /cpp/src/Ice/LoggerI.h | |
parent | Slightly better version of Gen.cpp, but still broken. Too tired to fix this (diff) | |
download | ice-a556e744b44a49bca47aaca909484fb2f7d8fae8.tar.bz2 ice-a556e744b44a49bca47aaca909484fb2f7d8fae8.tar.xz ice-a556e744b44a49bca47aaca909484fb2f7d8fae8.zip |
Removed IceBox two phase initialization. Use Ice.ProgramName in the
standard logger as a prefix. Changed IcePack to pass --Ice.ProgramName
to servers.
Diffstat (limited to 'cpp/src/Ice/LoggerI.h')
-rw-r--r-- | cpp/src/Ice/LoggerI.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cpp/src/Ice/LoggerI.h b/cpp/src/Ice/LoggerI.h index ff7d2c33e29..f7706247af5 100644 --- a/cpp/src/Ice/LoggerI.h +++ b/cpp/src/Ice/LoggerI.h @@ -20,10 +20,16 @@ namespace Ice class LoggerI : public Logger, public ::IceUtil::Mutex { public: + LoggerI(const std::string&); virtual void trace(const std::string&, const std::string&); virtual void warning(const std::string&); virtual void error(const std::string&); + +private: + + std::string _prefix; + std::string _emptyPrefix; }; } |