Files
EBoard/电子展板/Utility/Logs/LogHelper.cs
2025-09-26 17:42:33 +08:00

94 lines
2.1 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
//using NLog;
//using NLog.Config;
using System;
using .Utility.Extension;
namespace .Utility.Logs
{
//public class LogHelper
//{
// private readonly Logger _logger = LogManager.GetCurrentClassLogger();
// private static LogHelper _obj;
// private LogHelper()
// {
// LogManager.Configuration = new XmlLoggingConfiguration(MyEnvironment.Root("/Configs/NLog.config"));
// }
// public static LogHelper Instance => _obj ?? (new LogHelper());
// #region Debug调试
// public void Debug(string msg)
// {
// _logger.Debug(msg);
// }
// public void Debug(string msg, Exception err)
// {
// _logger.Debug(err, msg);
// }
// #endregion
// #region Info信息
// public void Info(string msg)
// {
// _logger.Info(msg);
// }
// public void Info(string msg, Exception err)
// {
// _logger.Info(err, msg);
// }
// #endregion
// #region Warn警告
// public void Warn(string msg)
// {
// _logger.Warn(msg);
// }
// public void Warn(string msg, Exception err)
// {
// _logger.Warn(err, msg);
// }
// #endregion
// #region Trace追踪
// public void Trace(string msg)
// {
// _logger.Trace(msg);
// }
// public void Trace(string msg, Exception err)
// {
// _logger.Trace(err, msg);
// }
// #endregion
// #region Error错误
// public void Error(string msg)
// {
// _logger.Error(msg);
// }
// public void Error(string msg, Exception err)
// {
// _logger.Error(err, msg);
// }
// #endregion
// #region Fatal,致命错误
// public void Fatal(string msg)
// {
// _logger.Fatal(msg);
// }
// public void Fatal(string msg, Exception err)
// {
// _logger.Fatal(err, msg);
// }
// #endregion
//}
}