.net NLog
2022/2/4 6:15:48
本文主要是介绍.net NLog,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
添加依赖
<ItemGroup> <PackageReference Include="NLog" Version="4.7.13" /> <PackageReference Include="NLog.Config" Version="4.7.13" /> <PackageReference Include="NLog.Schema" Version="4.7.13" /> </ItemGroup>
正常来说, 安装了 NLog.Config
, 另外两个也会自动安装, 如果没有, 则手动安装
添加配置文件
需要NLog.xsd
与NLog.config
文件
上一步操作完成后, 有可能可以看到这两个文件, 但是不能编辑, 可以打开所在路径, 然后复制到项目中, 重新添加
如果上一步操作完成后没有在项目中看到, 则可以从如下路径拿到默认的文件:
NLog.config: C:\Users\laolang\.nuget\packages\nlog.config\4.7.13\contentFiles\any\any NLog.xsd: C:\Users\laolang\.nuget\packages\nlog.schema\4.7.13\contentFiles\any\any
复制到当前项目, 修改NLog.config
的属性为始终复制, 然后修改NLog.config内容如下:
<?xml version="1.0" encoding="utf-8" ?> <nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.nlog-project.org/schemas/NLog.xsd NLog.xsd" autoReload="true" throwExceptions="false" internalLogLevel="Off" internalLogFile="c:\temp\nlog-internal.log"> <targets> <target xsi:type="File" name="f" fileName="${basedir}/logs/${shortdate}.log" layout="${longdate} ${uppercase:${level}} ${logger}:${callsite-linenumber} - ${message}" /> <target name="logConsole" xsi:type="Console" layout="${longdate} ${uppercase:${level}} ${logger}:${callsite-linenumber} - ${message}"/> </targets> <rules> <logger name="*" minlevel="Info" writeTo="f"/> <logger name="*" minlevel="Debug" writeTo="logConsole"/> </rules> </nlog>
cs代码使用
using System.Windows; namespace my_tools { /// <summary> /// Interaction logic for MainWindow.xaml /// </summary> public partial class MainWindow : Window { // 引入 Logger private static readonly NLog.Logger log = NLog.LogManager.GetCurrentClassLogger(); public MainWindow() { InitializeComponent(); } private void Button_Click(object sender, RoutedEventArgs e) { // 打印日志 log.Info("hello world"); } } }
效果如下
2022-02-03 23:55:14.3568 INFO my_tools.MainWindow:19 - hello world
问题
WPF .NET 5.0 控制台没有输出
这篇关于.net NLog的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2022-03-01沐雪多租宝商城源码从.NetCore3.1升级到.Net6的步骤
- 2024-05-08首个适配Visual Studio平台的国产智能编程助手CodeGeeX正式上线!C#程序员必备效率神器!
- 2024-03-30C#设计模式之十六迭代器模式(Iterator Pattern)【行为型】
- 2024-03-29c# datetime tryparse
- 2024-02-21list find index c#
- 2024-01-24convert toint32 c#
- 2024-01-24Advanced .Net Debugging 1:你必须知道的调试工具
- 2024-01-24.NET集成IdGenerator生成分布式全局唯一ID
- 2024-01-23用CI/CD工具Vela部署Elasticsearch + C# 如何使用
- 2024-01-23.NET开源的简单、快速、强大的前后端分离后台权限管理系统