C#손쉬운 로그 출력

1073 단어 C#(ASP.Net) 포함
log4j를 도입하지 않았습니다.dll의 경우 로그를 간단하게 출력합니다.
public static void ErrorLog(string mssg)
        {
            string FilePath = "F:/ErrorLog.txt";
            StreamWriter tw = null;
            try
            {
                if (!File.Exists(FilePath))
                {
                    File.Create(FilePath);
                }
                if (System.IO.File.Exists(FilePath))
                {
                    using (tw = System.IO.File.AppendText(FilePath))
                    {
                        tw.WriteLine(DateTime.Now.ToString() + "> " + mssg);
                        tw.Flush();
                    }
                }
                else
                {
                    tw = new StreamWriter(FilePath);
                    tw.WriteLine(DateTime.Now.ToString() + "> " + mssg);
                }
            }
            catch (Exception ex)
            { }
            finally
            {
                if (tw != null)
                    tw.Close();
            }
        }

좋은 웹페이지 즐겨찾기