C#记录日志到文本文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#记录日志到文本文件相关的知识,希望对你有一定的参考价值。

在配置文件中添加日志文件的存放路径:

1 <appSettings>
2     <add key="LogPath" value="H:\Logs" />
3 </appSettings>

封装一个记录日志的类:

 1   public class SystemLog
 2     {
 3         public static void WriteLogLine(string exceptionMessage)
 4         {
 5             string path = string.Empty;
 6             try
 7             {
 8                path = ConfigurationManager.AppSettings["LogPath"];
 9             }
10             catch (Exception)
11             {
12                 path = @"c:\temp";
13             }
14             if (string.IsNullOrEmpty(path))
15                 path = @"c:\temp";
16             try
17             {
18                 //如果日志目录不存在,则创建该目录
19                 if (!Directory.Exists(path))
20                 {
21                     Directory.CreateDirectory(path);
22                 }
23                 string logFileName = path + "\\程序日志_" + DateTime.Now.ToString("yyyy_MM_dd_HH") + ".log";
24                 StringBuilder logContents = new StringBuilder();
25                 logContents.AppendLine(exceptionMessage);
26                 //当天的日志文件不存在则新建,否则追加内容
27                 StreamWriter sw = new StreamWriter(logFileName, true, System.Text.Encoding.Unicode);
28                 sw.Write(DateTime.Now.ToString("yyyy-MM-dd hh:mm:sss") + " " + logContents.ToString());
29                 sw.Flush();
30                 sw.Close();
31             }
32             catch (Exception)
33             {
34             }
35         }
36     }

 在程序中使用日志类:

SystemLog.WriteLogLine("======>程序开始执行");//记录程序开始执行的时间

 

以上是关于C#记录日志到文本文件的主要内容,如果未能解决你的问题,请参考以下文章

C# 使用NLog记录日志

是否可以动态编译和执行 C# 代码片段?

C# 记录错误日志

常用python日期日志获取内容循环的代码片段

varnishlogVarnishstat详解

ASP.NET记录错误日志