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.

29 lines
930 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 NLog.xsd"
autoReload="true"
keepVariablesOnReload="false"
throwExceptions="true"
throwConfigExceptions="true"
internalLogLevel="Warn"
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="ColoredConsole" name="consoleTarget"/>
</targets>
<rules>
<logger name="*" minlevel="Info" writeTo="consoleTarget" />
</rules>
</nlog>