--- chewbacca/PamOffLineSW/Logger.cpp 2008/09/23 07:20:10 1.1 +++ chewbacca/PamOffLineSW/Logger.cpp 2009/08/05 18:48:43 1.2 @@ -1,5 +1,5 @@ //============================================================================ -// $Id: Logger.cpp,v 1.4 2008-03-05 11:36:27 messineo Exp $ +// $Id: Logger.cpp,v 1.1.1.1 2008-09-23 07:20:10 mocchiut Exp $ // Description : //============================================================================ #include "Logger.h" @@ -13,7 +13,7 @@ mLevel=LogUtil::LOGERROR; mOutStream.open(mFilename.c_str(), std::ios::binary); } -LogUtil::LogUtil(char* filename){ +LogUtil::LogUtil(const char* filename){ mtempstring=""; mFilename=std::string(filename); mLevel=LogUtil::LOGERROR; @@ -25,7 +25,7 @@ mLevel=level; mOutStream.open(mFilename.c_str(), std::ios::binary); } -LogUtil::LogUtil(char* filename, logLevel level){ +LogUtil::LogUtil(const char* filename, logLevel level){ mtempstring=""; mFilename=std::string(filename); mLevel=level; @@ -83,25 +83,25 @@ } -void LogUtil::logAlways(char* msg){ +void LogUtil::logAlways(const char* msg){ std::string tmp = msg; logAlways(tmp); } -void LogUtil::logError(char* msg){ +void LogUtil::logError(const char* msg){ std::string tmp = msg; logError(tmp); } -void LogUtil::logWarning(char* msg){ +void LogUtil::logWarning(const char* msg){ std::string tmp = msg; logWarning(tmp); } -void LogUtil::logInfo(char* msg){ +void LogUtil::logInfo(const char* msg){ std::string tmp = msg; logInfo(tmp); } -void LogUtil::logAll(char* msg){ +void LogUtil::logAll(const char* msg){ std::string tmp = msg; logAll(tmp); }