.NET Core 里的优秀日志框架Serilog、NLog、Log4Net、Microsoft.Extensions.Logging

在.NET Core中,Serilog、NLog、Log4Net、Microsoft.Extensions.Logging都是流行的日志记录框架,它们各自具有不同的特点和用法。以下是对这些日志框架使用方法的概述:

目录

1. Serilog

2. NLog

3. Log4Net

4. Microsoft.Extensions.Logging


1. Serilog

特点

  • 可配置性强,支持链式调用。
  • 可以自定义日志格式和输出方式。

使用方法

  1. 安装NuGet包
    • 使用NuGet包管理器安装SerilogSerilog.Sinks.Console(或其他所需的Sinks,如文件、数据库等)。
  2. 配置Serilog
    • 在程序入口(如Program.cs中的Main方法或.NET Core项目的Startup.cs中)配置Serilog。
    • 使用LoggerConfiguration类配置日志级别、输出格式和Sinks。
  3. 记录日志
    • 使用Log.Information()Log.Warning()Log.Error()等方法记录日志。

示例代码(基于.NET Core 6.0及以上版本):

using Serilog;  
  
class Program  
{  
    public static void Main(string[] args)  
    {  
        Log.Logger = new LoggerConfiguration()  
            .MinimumLevel.Debug()  
            .WriteTo.Console()  
            .CreateLogger();  
  
        Log.Information("Hello, Serilog!");  
  
        // 确保在应用程序退出前刷新并停止内部定时器和线程  
        Log.CloseAndFlush();  
    }  
}

2. NLog

特点

  • 配置简单,易于使用。
  • 支持多种输出方式,包括控制台、文件、数据库等。

使用方法

  1. 安装NuGet包
    • 使用NuGet包管理器安装NLogNLog.Web.AspNetCore(对于ASP.NET Core项目)。
  2. 添加NLog配置文件(如nlog.config):
    • 在项目根目录下创建nlog.config文件,并配置日志目标(targets)和规则(rules)。
  3. 配置NLog
    • Program.cs中配置NLog,通常是通过NLogBuilder.ConfigureNLog("nlog.config")方法。
  4. 记录日志
    • 使用ILogger接口或NLogLogger类记录日志。

示例代码(基于ASP.NET Core):

using NLog.Web;  
  
public class Program  
{  
    public static void Main(string[] args)  
    {  
        var logger = NLogBuilder.ConfigureNLog("nlog.config").GetCurrentClassLogger();  
  
        // ... 其他代码  
  
        logger.Info("Hello, NLog!");  
  
        // 确保在应用程序退出时正确关闭NLog  
        NLog.LogManager.Shutdown();  
    }  
}

3. Log4Net

特点

  • 稳定性高,配置灵活。
  • 支持多种输出方式,包括控制台、文件、数据库等。

使用方法

  1. 安装NuGet包
    • 使用NuGet包管理器安装log4net
  2. 添加配置文件(如log4net.config):
    • 在项目根目录下创建log4net.config文件,并配置appender、logger等。
  3. 配置Log4Net
    • 在程序入口或全局位置使用XmlConfigurator.Configure方法加载配置文件。
  4. 记录日志
    • 使用ILog接口记录日志。

示例代码(基于.NET Core):

using log4net;  
using log4net.Config;  
  
public class Program  
{  
    private static readonly ILog logger = LogManager.GetLogger(typeof(Program));  
  
    public static void Main(string[] args)  
    {  
        XmlConfigurator.Configure(new FileInfo("log4net.config"));  
  
        // ... 其他代码  
  
        logger.Info("Hello, Log4Net!");  
    }  
}

4. Microsoft.Extensions.Logging

特点

  • Microsoft.Extensions.Logging 是 .NET Core 自带的日志框架,它提供了一个通用的日志记录接口,允许开发者通过不同的日志提供者(如控制台、文件、第三方库等)来实现日志记录。
  • 它易于集成,并支持 .NET Core 的依赖注入框架。

使用方法

  1. 安装 NuGet 包
    • 对于 Microsoft.Extensions.Logging 本身,通常不需要单独安装 NuGet 包,因为它已经包含在 .NET Core 的基础库中。
    • 如果需要使用特定的日志提供者(如控制台、文件等),则需要安装相应的 NuGet 包,如 Microsoft.Extensions.Logging.ConsoleMicrosoft.Extensions.Logging.File(注意:Microsoft.Extensions.Logging.File 并不是官方直接提供的包,通常需要使用第三方库如 Serilog.Sinks.File 或 NLog 的文件目标来实现文件日志记录)。
  2. 配置日志提供者
    • 在应用程序的启动过程中,通常是在 Program.cs 文件的 Main 方法或 CreateHostBuilder 方法中配置日志提供者。
    • 使用 LoggerFactory 类创建日志工厂,并通过其 Add 方法添加所需的日志提供者。例如,要添加控制台日志提供者,可以使用 builder.AddConsole()
  3. 记录日志
    • 使用 ILogger<TCategoryName> 接口的实例来记录日志。通常,这个实例是通过依赖注入获取的,或者是在需要的地方通过 LoggerFactory 创建的。
    • 使用 LogInformationLogWarningLogError 等方法记录不同级别的日志。

示例代码(基于 .NET Core 6.0 及以上版本,使用控制台日志提供者):

using Microsoft.Extensions.Logging;  
  
var loggerFactory = LoggerFactory.Create(builder =>  
{  
    builder  
        .AddFilter((category, level) =>  
            category == "MyCategory" && level >= LogLevel.Information) // 可选:添加过滤器  
        .AddConsole(); // 添加控制台日志提供者  
});  
  
var logger = loggerFactory.CreateLogger<Program>();  
  
logger.LogInformation("Hello, this is an informational message!");  
logger.LogWarning("This is a warning message.");  
logger.LogError("Oops! Something went wrong.");

注意

  • 在实际应用中,你可能会使用 .NET Core 的依赖注入框架来自动管理 ILogger<TCategoryName> 的实例,而不是手动创建它们。
  • Microsoft.Extensions.Logging 允许你通过配置文件(如 appsettings.json)来配置日志提供者,但这通常是通过集成第三方日志库(如 Serilog、NLog)来实现的,因为 Microsoft.Extensions.Logging 本身并不直接支持从配置文件中读取配置。
  • 如果你需要更复杂的日志记录功能(如日志轮转、日志压缩、异步日志记录等),你可能需要选择 Serilog、NLog 或 Log4Net 等更高级的日志框架。
GNU LESSER GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. [http://fsf.org/] Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. This version of the GNU Lesser General Public License incorporates the terms and conditions of version 3 of the GNU General Public License, supplemented by the additional permissions listed below. 0. Additional Definitions. As used herein, "this License" refers to version 3 of the GNU Lesser General Public License, and the "GNU GPL" refers to version 3 of the GNU General Public License. "The Library" refers to a covered work governed by this License, other than an Application or a Combined Work as defined below. An "Application" is any work that makes use of an interface provided by the Library, but which is not otherwise based on the Library. Defining a subclass of a class defined by the Library is deemed a mode of using an interface provided by the Library. A "Combined Work" is a work produced by combining or linking an Application with the Library. The particular version of the Library with which the Combined Work was made is also called the "Linked Version". The "Minimal Corresponding Source" for a Combined Work means the Corresponding Source for the Combined Work, excluding any source code for portions of the Combined Work that, considered in isolation, are based on the Application, and not on the Linked Version. The "Corresponding Application Code" for a Combined Work means the object code and/or source code for the Application, including any data and utility programs needed for reproducing the Combined Work from the Application, but excluding the System Libraries of the Combined Work. 1. Exception to Section 3 of the GNU GPL. You may convey a covered work under sections 3 and 4 of this License without being bound by section 3 of the GNU GPL. 2. Conveying Modified Versions. If you modify a copy of the Library, and, in your modifications, a facility refers to a function or data to be supplied by an Application that uses the facility (other than as an argument passed when the facility is invoked), then you may convey a copy of the modified version: a) under this License, provided that you make a good faith effort to ensure that, in the event an Application does not supply the function or data, the facility still operates, and performs whatever part of its purpose remains meaningful, or b) under the GNU GPL, with none of the additional permissions of this License applicable to that copy. 3. Object Code Incorporating Material from Library Header Files. The object code form of an Application may incorporate material from a header file that is part of the Library. You may convey such object code under terms of your choice, provided that, if the incorporated material is not limited to numerical parameters, data structure layouts and accessors, or small macros, inline functions and templates (ten or fewer lines in length), you do both of the following: a) Give prominent notice with each copy of the object code that the Library is used in it and that the Library and its use are covered by this License. b) Accompany the object code with a copy of the GNU GPL and this license document. 4. Combined Works. You may convey a Combined Work under terms of your choice that, taken together, effectively do not restrict modification of the portions of the Library contained in the Combined Work and reverse engineering for debugging such modifications, if you also do each of the following: a) Give prominent notice with each copy of the Combined Work that the Library is used in it and that the Library and its use are covered by this License. b) Accompany the Combined Work with a copy of the GNU GPL and this license document. c) For a Combined Work that displays copyright notices during execution, include the copyright notice for the Library among these notices, as well as a reference directing the user to the copies of the GNU GPL and this license document. d) Do one of the following: 0) Convey the Minimal Corresponding Source under the terms of this License, and the Corresponding Application Code in a form suitable for, and under terms that permit, the user to recombine or relink the Application with a modified version of the Linked Version to produce a modified Combined Work, in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source. 1) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (a) uses at run time a copy of the Library already present on the user's computer system, and (b) will operate properly with a modified version of the Library that is interface-compatible with the Linked Version. e) Provide Installation Information, but only if you would otherwise be required to provide such information under section 6 of the GNU GPL, and only to the extent that such information is necessary to install and execute a modified version of the Combined Work produced by recombining or relinking the Application with a modified version of the Linked Version. (If you use option 4d0, the Installation Information must accompany the Minimal Corresponding Source and Corresponding Application Code. If you use option 4d1, you must provide the Installation Information in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source.) 5. Combined Libraries. You may place library facilities that are a work based on the Library side by side in a single library together with other library facilities that are not Applications and are not covered by this License, and convey such a combined library under terms of your choice, if you do both of the following: a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities, conveyed under the terms of this License. b) Give prominent notice with the combined library that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work. 6. Revised Versions of the GNU Lesser General Public License. The Free Software Foundation may publish revised and/or new versions of the GNU Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Library as you received it specifies that a certain numbered version of the GNU Lesser General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that published version or of any later version published by the Free Software Foundation. If the Library as you received it does not specify a version number of the GNU Lesser General Public License, you may choose any version of the GNU Lesser General Public License ever published by the Free Software Foundation. If the Library as you received it specifies that a proxy can decide whether future versions of the GNU Lesser General Public License shall apply, that proxy's public statement of acceptance of any version is permanent authorization for you to choose that version for the Library.
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

AitTech

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值