>  기사  >  백엔드 개발  >  C# 로깅 클래스 생성을 위한 소스 코드 공유

C# 로깅 클래스 생성을 위한 소스 코드 공유

黄舟
黄舟원래의
2017-03-10 13:54:581202검색

调试及发布程序时,经常需要将一些信息输出保存,这里写了一个自己的日志记录类,记录信息更方便了。需要的话还可以进行更多的扩展,比如记录异常信息等。

using System;
using System.IO;


namespace WindowsFormsApplication1
{
    public static class LogerHelper
    {
        #region  创建日志
        ///-----------------------------------------------------------------------------
        /// <summary>创建错误日志 在c:\ErrorLog\</summary>
        /// <param name="message">记录信息</param>
        /// <returns></returns>
        ///-----------------------------------------------------------------------------
        public static void CreateLogTxt(string message)
        {
            string strPath;                                                   //文件的路径
            DateTime dt = DateTime.Now;
            try
            {
                strPath = Directory.GetCurrentDirectory() + "\\Log";          //winform工程\bin\目录下 创建日志文件夹 

                if(Directory.Exists(strPath)==false)                          //工程目录下 Log目录 &#39;目录是否存在,为true则没有此目录
                {
                    Directory.CreateDirectory(strPath);                       //建立目录 Directory为目录对象
                }    
                strPath = strPath + "\\" + dt.ToString("yyyy");

                if(Directory.Exists(strPath) == false)                     
                {
                    Directory.CreateDirectory(strPath);               
                }
                strPath = strPath + "\\" + dt.Year.ToString() + "-" + dt.Month.ToString() + ".txt"; 
                
                StreamWriter FileWriter= new StreamWriter(strPath, true);           //创建日志文件
                FileWriter.WriteLine("[" + dt.ToString("yyyy-MM-dd HH:mm:ss") + "]  " + message); 
                FileWriter.Close();                                                 //关闭StreamWriter对象
            }
            catch(Exception ex)
            {
                string str=ex.Message.ToString();
            }
        }
        #endregion

    }
}

위 내용은 C# 로깅 클래스 생성을 위한 소스 코드 공유의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.