一個(gè)簡(jiǎn)單的自定義程序日志小樣例
更新時(shí)間:2009年07月30日 18:48:09 作者:
前面一篇文章大概說(shuō)了下自己對(duì)日志的一點(diǎn)理解,可能不太直觀,這里再附上一個(gè)簡(jiǎn)單的使用例子,以作為對(duì)之前的補(bǔ)充,例子比較簡(jiǎn)單,所以直接看注釋即可。
復(fù)制代碼 代碼如下:
using System;
using System.IO;
using System.Text;
public class LogInfo
{
private string ErrorInfo_User = ""; // 記錄用戶自定義錯(cuò)誤信息
private string ErrorPosition = ""; // 記錄錯(cuò)誤的位置信息,可包括類、函數(shù)等
private string ErrorInfo_Sys = ""; // 記錄系統(tǒng)產(chǎn)生的異常錯(cuò)誤信息
// 記錄日志信息
public void RecordErrorInfo(string Position, string Error_Sys, string Error_User)
{
ErrorPosition = Position;
ErrorInfo_Sys = Error_Sys;
ErrorInfo_User = Error_User;
}
// 自定義日志信息格式
private string GetLogContent()
{
string LogContent = "\r\n--------------------------------------------------------------------------\r\n";
LogContent += "[自定義異常日志][" + DateTime.Now.ToString() + "]\r\n";
LogContent += "=>[Position]=>[" + ErrorPosition + "]\r\n";
LogContent += "=>[UserInfo]=>[" + ErrorInfo_User + "]\r\n";
LogContent += "=>[SysInfo]=>[" + ErrorInfo_Sys + "]\r\n";
LogContent += "--------------------------------------------------------------------------\r\n";
return LogContent;
}
// 保存日志信息到文件
public void SaveLogToFile()
{
try
{
// get the file path of the log.
string FileName = @"log/LogInfo_" + DateTime.Now.ToString("yyyy-MM-dd") + ".txt";
// get the content of the log.
string LogContent = GetLogContent();
// create the stream of the log file and save the log.
FileStream smLog = new FileStream(FileName, FileMode.Append, FileAccess.Write);
// if the stream is correct.
if (smLog != null)
{
long lFileContentLen = smLog.Length;
smLog.Lock(0, lFileContentLen);
byte[] buffer = Encoding.GetEncoding("gb2312").GetBytes(LogContent);
smLog.Write(buffer, 0, buffer.Length);
smLog.Unlock(0, lFileContentLen);
smLog.Flush();
smLog.Close();
}
}
catch
{ }
}
}
public class LogExample
{
private LogInfo _Log = new LogInfo();
// 某處理函數(shù)一
public void Function_First()
{
try
{
// do something which could be occur exception.
}
catch (Exception error)
{
_Log.RecordErrorInfo("函數(shù)Function_First", error.Message.ToString(), "執(zhí)行函數(shù)Function_First時(shí),發(fā)生異常!");
_Log.SaveLogToFile();
}
}
// 某處理函數(shù)二
public void Function_Second()
{
try
{
// do something which could be occur exception.
}
catch (Exception error)
{
_Log.RecordErrorInfo("函數(shù)Function_Second", error.Message.ToString(), "執(zhí)行函數(shù)Function_Second時(shí),發(fā)生異常!");
_Log.SaveLogToFile();
}
}
}
class Program
{
static void Main(string[] args)
{
// 創(chuàng)建內(nèi)建了日志的對(duì)象
LogExample Le = new LogExample();
// 執(zhí)行處理操作一
Le.Function_First();
// 執(zhí)行處理操作二
Le.Function_Second();
}
}
相關(guān)文章
ASP.NET中application對(duì)象的使用介紹
這篇文章主要介紹了ASP.NET中application對(duì)象的使用,需要的朋友可以參考下2014-03-03asp.net子窗體與父窗體交互實(shí)戰(zhàn)分享
用到了兩個(gè)頁(yè)面,其中Default.aspx作為父頁(yè)面,Default2.aspx作為子頁(yè)面被彈出。Default.aspx頁(yè)面上有兩個(gè)TextBox一個(gè)Button通過(guò)測(cè)試我們可以看出我們保留了先輸入到父窗體中的值,又接收了從子窗體傳遞過(guò)來(lái)的值2013-02-02用javascript為DropDownList控件下拉式選擇添加一個(gè)Item至定義索引位置
用Javascript為DropDownList控件下拉式選擇添加一個(gè)Item至定義索引位置;準(zhǔn)備數(shù)據(jù),創(chuàng)建一個(gè)對(duì)象,將是存儲(chǔ)DropDownList控件每個(gè)Item數(shù)據(jù)2013-01-01深入Lumisoft.NET組件與.NET API實(shí)現(xiàn)郵件發(fā)送功能的對(duì)比分析
本篇文章對(duì)Lumisoft.NET組件與.NET API實(shí)現(xiàn)郵件發(fā)送的功能兩者進(jìn)行了深入的對(duì)比分析。需要的朋友參考下2013-05-05