3 Star 1 Fork 1

Gui.H/WindowsSeviceTool

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
LogHelper.cs 920 Bytes
一键复制 编辑 原始数据 按行查看 历史
Gui.H 提交于 2017-12-27 15:07 . InitializeComponent
using log4net;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Service
{
public class LogHelper
{
private static ILog m_log { get { return LogManager.GetLogger("Common"); } }
public static void Info(object message)
{
m_log.Info(message);
}
public static void Debug(object message)
{
m_log.Debug(message);
}
public static void Error(Exception message)
{
m_log.Error(message);
}
public static void Error(string message)
{
Type type = System.Reflection.MethodBase.GetCurrentMethod().DeclaringType;
m_log.Error(type);
m_log.Error(message);
}
public static void Fatal(object message)
{
m_log.Fatal(message);
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/SpringHgui/WindowsSeviceTool.git
git@gitee.com:SpringHgui/WindowsSeviceTool.git
SpringHgui
WindowsSeviceTool
WindowsSeviceTool
master

搜索帮助