C# 日志记录

/// <summary>
/// 编译目录
/// </summary>
static string g_strRunPath = new DirectoryInfo(System.Reflection.Assembly.GetExecutingAssembly().Location).Parent.FullName;

/// <summary>
/// 在日志中记录信息
/// </summary>
/// <param name="strMessage">信息</param>
public static void RecordMessage(string strMessage)
{
    FileStream m_fs = null;
    StreamWriter m_sw = null;

    try
    {
        string strLogDirName = Path.Combine(g_strRunPath, "Log");
        if (!Directory.Exists(strLogDirName))
            Directory.CreateDirectory(strLogDirName);

        string strLogDateDirName = Path.Combine(strLogDirName, DateTime.Now.ToString("yyyy-MM-dd"));
        if (!Directory.Exists(strLogDateDirName))
            Directory.CreateDirectory(strLogDateDirName);

        string strLogFile = Path.Combine(strLogDateDirName, "Error.log");

        if (File.Exists(strLogFile))
            m_fs = new FileStream(strLogFile, FileMode.Append, FileAccess.Write);
        else
            m_fs = new FileStream(strLogFile, FileMode.Create, FileAccess.Write);

        m_sw = new StreamWriter(m_fs, Encoding.Default);
        m_sw.WriteLine(strMessage);
    }
    catch { }
    finally
    {
        if (m_sw != null)
            m_sw.Close();

        if (m_fs != null)
            m_fs.Close();
    }
}

/// <summary>
/// 在日志中记录异常信息
/// </summary>
/// <param name="exMessage">异常</param>
public static void RecordException(Exception exMessage)
{
    try
    {
        string strExceptionMessage = "时间: " + DateTime.Now + "\r\n错误类型: " + exMessage.GetType() + "\r\n提示: " + exMessage.Message + "\r\n来自: " + exMessage.HelpLink + "\r\n详细: \r\n" + exMessage.StackTrace + "\r\n";
        RecordMessage(strExceptionMessage, LogType.ErrorMessage);
    }
    catch { }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值