You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.1 KiB
XML
36 lines
1.1 KiB
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 NLog.xsd"
|
|
autoReload="true"
|
|
keepVariablesOnReload="false"
|
|
throwExceptions="true"
|
|
throwConfigExceptions="true"
|
|
internalLogLevel="Trace"
|
|
internalLogFile="${basedir}\logs\internal-nlog.txt"
|
|
>
|
|
<!--引入Nlog扩展包-->
|
|
<extensions>
|
|
<add assembly="NLog.Web.AspNetCore"/>
|
|
<!--<add assembly="NLog.Redis"/>-->
|
|
<add assembly="NLog.Targets.Redis" />
|
|
</extensions>
|
|
|
|
<!--自定义变量-->
|
|
<variable name="myvariable" value="test" />
|
|
|
|
<!--设置目标-->
|
|
<targets>
|
|
<target xsi:type="Redis"
|
|
name="redis"
|
|
host="127.0.0.1"
|
|
port="6379"
|
|
db="0"
|
|
key="logKey"
|
|
dataType="list"
|
|
layout="${date:format=yyyyMMddHHmmss} ${uppercase:${level}} ${message}" />
|
|
</targets>
|
|
<rules>
|
|
<logger name="*" minlevel="Info" writeTo="redis" />
|
|
</rules>
|
|
</nlog> |