• 大小: 2.53KB
    文件类型: .cs
    金币: 1
    下载: 0 次
    发布日期: 2020-12-26
  • 语言: C#
  • 标签: log4net  

资源简介

Log4net 常用类Logger 示例源码

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Kt.framework.Common
{
    /// 
    /// 常用的日志方法 
    /// 

    public class Logger
    {
        /// 
        /// DEBUG 
        /// 

        /// 
        public static void Debug(object message string loggername = ““)
        {
            log4net.ILog log = log4net.LogManager.GetLogger(loggername);

            log.Debug(message);
        }
        /// 
        /// Error
        /// 

        /// 
        public static void Error(object message string loggername = ““)
        {
            log4net.ILog log = log4net.LogManager.GetLogger(loggername);

评论

共有 条评论