// ********************************************************************** // // Copyright (c) 2003-2017 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. // // ********************************************************************** #ifndef ICE_SYS_LOGGER_I_H #define ICE_SYS_LOGGER_I_H #include #include namespace Ice { class SysLoggerI : public Logger, public ::IceUtil::Mutex { public: SysLoggerI(const std::string&, const std::string&); ~SysLoggerI(); virtual void print(const std::string&); virtual void trace(const std::string&, const std::string&); virtual void warning(const std::string&); virtual void error(const std::string&); virtual std::string getPrefix(); virtual LoggerPtr cloneWithPrefix(const std::string&); private: SysLoggerI(const std::string&, int); int _facility; const std::string _prefix; }; } #endif