00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036 #include "stdafx.h"
00037 #include "TraceLog.h"
00038
00039 #include <atlbase.h>
00040
00041 #ifdef _MEMORY_DEBUG
00042 #define new DEBUG_NEW
00043 #define malloc DEBUG_MALLOC
00044 static char THIS_FILE[] = __FILE__;
00045 #endif
00046
00047 KOMODIA_NAMESPACE_START
00048
00049 CTraceLog::CTraceLog() : CErrorHandler::CErrorLog()
00050 {
00051 }
00052
00053 CTraceLog::~CTraceLog()
00054 {
00055 }
00056
00057 bool CTraceLog::WriteLog(const std::string& rMessage)
00058 {
00059 try
00060 {
00061 #ifdef _MSC_VER
00062
00063 if (rMessage.size()<500)
00064 {
00065
00066 ATLTRACE("%s\n",rMessage.c_str());
00067 }
00068 else
00069 {
00070
00071 std::string sTmp;
00072 sTmp=rMessage.substr(0,499);
00073
00074
00075 ATLTRACE("%s\n",sTmp.c_str());
00076 }
00077
00078 #endif
00079 return true;
00080 }
00081 catch (...)
00082 {
00083 return false;
00084 }
00085 }
00086
00087 void CTraceLog::WriteError(const std::string& rError)
00088 {
00089 WriteLog(rError);
00090 }
00091
00092 void CTraceLog::WriteMessage(const std::string& rMessage)
00093 {
00094 WriteLog(rMessage);
00095 }
00096
00097 KOMODIA_NAMESPACE_END