log4net 记录帮助类
Posted cplvfx
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了log4net 记录帮助类相关的知识,希望对你有一定的参考价值。
log4net 记录帮助类
using log4net;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace Web.Tools
public class LogTool
private ILog logger;
private string TypeStr;
private const string endtxt = "\\r\\n\\r\\n***************分隔符******************\\r\\n\\r\\n";
public LogTool(Type type)
this.logger = LogManager.GetLogger("TxtRollingLogger");
TypeStr = type.ToString();
public void Debug(object message)
this.logger.Debug($"[TypeStr] - message");
public void Error(string message)
this.logger.Error($"[TypeStr] - message");
public void Error(Exception e)
this.logger.Error($"\\r\\n [TypeStr] 错误提示:" + e.Message + "\\r\\n堆栈信息:\\r\\n" + e.StackTrace + "" + endtxt);
public void Info(object message)
this.logger.Info($"[TypeStr] - message");
public void Warn(object message)
this.logger.Warn($"[TypeStr] - message");
以上是关于log4net 记录帮助类的主要内容,如果未能解决你的问题,请参考以下文章