BililiveRecorder/BililiveRecorder.WPF/NLog.Debug.config

44 lines
2.2 KiB
Plaintext
Raw Normal View History

2018-03-21 20:56:56 +08:00
<?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"
2020-12-17 18:55:58 +08:00
xsi:schemaLocation="http://www.nlog-project.org/schemas/NLog.xsd ../CI/NLog.xsd"
autoReload="true" throwExceptions="false" throwConfigExceptions="true" internalLogLevel="Off">
<extensions>
<add assembly="Sentry.NLog"/>
</extensions>
2018-03-21 20:56:56 +08:00
<targets>
2020-11-27 18:51:02 +08:00
<target name="WPFLogger" xsi:type="MethodCall" className="BililiveRecorder.WPF.Models.LogModel, BililiveRecorder.WPF" methodName="AddLog">
<parameter layout="[${date:format=HH\:mm\:ss}] ${level:upperCase=true} ${event-properties:item=roomid} ${message} ${exception:format=Message}" />
2018-03-21 20:56:56 +08:00
</target>
<target name="file" xsi:type="File" encoding="utf-8" lineEnding="CRLF" fileName="${basedir}/logs/log.current.txt"
maxArchiveFiles="15" archiveFileName="${basedir}/logs/log.{#}.txt" archiveNumbering="Date"
archiveEvery="Day" archiveDateFormat="yyyyMMdd">
2018-04-14 10:00:29 +08:00
<layout xsi:type="JsonLayout">
<attribute name='time' layout='${longdate}'/>
2018-04-14 10:00:29 +08:00
<attribute name='level' layout='${level:upperCase=true}'/>
2018-11-01 23:40:50 +08:00
<attribute name='pid' layout='${processid}'/>
2018-04-14 10:00:29 +08:00
<attribute name='logger' layout='${logger}'/>
<attribute name='roomid' layout='${event-properties:item=roomid}'/>
<attribute name='message' layout='${message}'/>
<attribute name='exception' encode='false'>
<layout xsi:type='JsonLayout'>
<attribute name='type' layout='${exception:format=Type}'/>
<attribute name='message' layout='${exception:format=Message}'/>
<attribute name='tostring' layout='${exception:format=ToString}'/>
</layout>
</attribute>
</layout>
</target>
<target xsi:type="Sentry" name="sentry" layout="${message}"
breadcrumbLayout="${event-properties:item=roomid} ${message}"
minimumBreadcrumbLevel="Debug" minimumEventLevel="Error">
<options initializeSdk="false"/>
<tag name="logger" layout="${logger}" />
</target>
2018-03-21 20:56:56 +08:00
</targets>
<rules>
<logger name="*" writeTo="sentry"/>
2018-03-24 04:58:13 +08:00
<logger name="*" minlevel="Trace" writeTo="WPFLogger"/>
2018-04-14 10:00:29 +08:00
<logger name="*" minlevel="Trace" writeTo="file"/>
2018-03-21 20:56:56 +08:00
</rules>
</nlog>