C 2005 乙個簡單的寫日誌類

2021-04-16 16:56:04 字數 1267 閱讀 7265

using system;

using system.windows.forms;

using system.threading;

using system.io;

namespace filecontrol

///

/// log類靜態建構函式

///

static log()

///

/// 設定日誌檔名

///

/// 日誌檔名[預設為poliscan-m.evt]

public static bool setlogfilename(string logfilename)

else

} ///

/// 寫日誌

///

/// 資訊的詳細描述

public static void writetofile(string eventdescription)

///

/// 寫日誌

///

/// 資訊寫入時程式位置或事件位置

/// 資訊的詳細描述

public static void writetofile(string eventsite,string eventdescription)

///

/// 寫日誌

///

/// 資訊標誌位,標識不同型別的資訊

/// 資訊寫入時程式位置或事件位置

/// 資訊的詳細描述

public static void writetofile(int eventstate,string eventsite,string eventdescription)

///

/// 寫日誌

///

/// 資訊標誌位,標識不同型別的資訊

/// 資訊寫入時程式位置或事件位置

/// 資訊的詳細描述

/// 是否需要新增分隔符

public static void writetofile(int eventstate,string eventsite,string eventdescription,bool eventseparate)

}streamfile = new  streamwriter(logfile, true);

trystreamfile.writeline(lineinfo);

}finally }

catch

finally

return; }}

}

乙個簡單的日誌類

放乙個以前做的,一直用著的日誌類。比較短,也不用碼很多字去說明,如下 1 2 日誌類 log.cs34 5 用法 6 ningtao.log mylog new ningtao.log 日誌名稱 7 mylog.addlog 日誌資訊 8 新增一條日誌時 9 目錄結構 日誌名稱 年月 日.log 1...

乙個簡單可用的C 日誌類

少廢話,直接看東西。pragma once include define log buffer size 1024 class logwriter include logwriter.h include include include include logwriter logwriter cons...

乙個簡單實用的C 日誌類

最近做c 開發,需要對軟體狀態做乙個日誌記錄,發現開源的實現很多,但感覺太大了,動不動就幾十個cpp檔案。我的東西還要跑在嵌入式裝置上呢?不就寫個日誌嗎,噼噼啪啪 乙個下午就搞定!在此做乙個簡單記錄吧,供自己日後參考!pragma once include include include if de...