mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 11:42:22 +08:00
18 lines
735 B
XML
18 lines
735 B
XML
<?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 ../CI/NLog.xsd"
|
|
autoReload="true"
|
|
throwExceptions="false"
|
|
internalLogLevel="Off" internalLogFile="c:\temp\nlog-internal.log"
|
|
>
|
|
<targets>
|
|
<target name="console" xsi:type="Console" encoding="utf-8"
|
|
layout="${longdate} ${level:upperCase=true} ${processid} ${logger} ${event-properties:item=roomid} ${message} ${exception:format=Type} ${exception:format=Message} ${exception:format=ToString}"
|
|
/>
|
|
</targets>
|
|
<rules>
|
|
<logger name="*" minlevel="Info" writeTo="console"/>
|
|
</rules>
|
|
</nlog>
|