1 Star 0 Fork 0

xiaosongzhuo/dotnet_miniapi_quartz

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
nlog.config 1.48 KB
一键复制 编辑 原始数据 按行查看 历史
xiaosongzhuo 提交于 2024-01-16 22:25 . 配制好nlog
<?xml version="1.0" ?>
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
autoReload="true">
<targets>
<!-- write logs to file -->
<target name="file" xsi:type="AsyncWrapper" queueLimit="5000" overflowAction="Discard">
<target xsi:type="File" fileName="Logs/nlog-all-${shortdate}.log" layout="${longdate} ${level:uppercase=true} ${event-context:item=Action} ${message} ${event-context:item=Amount} ${stacktrace}" />
<!-- <target xsi:type="File" fileName="${basedir}/Logs/${shortdate}.log" layout="${longdate} ${level:uppercase=true} ${event-context:item=Action} ${message} ${event-context:item=Amount} ${stacktrace}" /> -->
</target>
<!--Console Target for hosting lifetime messages to improve Docker / Visual Studio startup detection -->
<target name="console" xsi:type="Console" layout="${longdate}|${level}|${message}"/>
<!--说明 xsi:type="Console"指定输出到控制台;layout指定输出文件内容的样式 ${longdate}是日期(具体到毫秒),${level}是日志的等级;${message}是具体要输出的内容。-->
</targets>
<rules>
<!--TRACE,DEBUG,INFO,WARN,ERROR,FATAL-->
<logger name="*" minlevel="Trace" writeTo="debugger" />
<!--INFO,WARN,ERROR,FATAL-->
<logger name="*" minlevel="Info" writeTo="console" />
<!--DEBUG,INFO,WARN,ERROR,FATAL-->
<logger name="*" minlevel="Warn" writeTo="file" />
</rules>
</nlog>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhuo-xiaosong/dotnet_miniapi_quartz.git
git@gitee.com:zhuo-xiaosong/dotnet_miniapi_quartz.git
zhuo-xiaosong
dotnet_miniapi_quartz
dotnet_miniapi_quartz
master

搜索帮助