2015-07-26 21:39:49 +00:00
|
|
|
#ifndef INFO
|
|
|
|
#define INFO
|
|
|
|
|
2015-11-24 06:08:31 +00:00
|
|
|
#include <Common/TString.h>
|
2015-07-26 21:39:49 +00:00
|
|
|
|
|
|
|
namespace Log
|
|
|
|
{
|
|
|
|
|
2015-11-24 06:08:31 +00:00
|
|
|
void Write(const TString& message);
|
|
|
|
void Error(const TString& message);
|
|
|
|
void Warning(const TString& message);
|
|
|
|
void FileWrite(const TString& filename, const TString& message);
|
|
|
|
void FileWrite(const TString& filename, unsigned long offset, const TString& message);
|
|
|
|
void FileError(const TString& filename, const TString& message);
|
|
|
|
void FileError(const TString& filename, unsigned long offset, const TString& message);
|
|
|
|
void FileWarning(const TString& filename, const TString& message);
|
|
|
|
void FileWarning(const TString& filename, unsigned long offset, const TString& message);
|
2015-07-26 21:39:49 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // INFO
|
|
|
|
|