Готовая лабораторная работа 1
This commit is contained in:
parent
28fbc343b3
commit
c536721707
18
FurnitureAssembly/FurnitureAssemblyView/nlog.config
Normal file
18
FurnitureAssembly/FurnitureAssemblyView/nlog.config
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
|
<configuration>
|
||||||
|
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
|
autoReload="true" internalLogLevel="Info">
|
||||||
|
|
||||||
|
<targets>
|
||||||
|
<target xsi:type="File" name="tofile" fileName="logs/log-${shortdate}.log" />
|
||||||
|
</targets>
|
||||||
|
<target name="console" xsi:type="Console" layout="Access Log|${level:uppercase=true}|${logger}|${message}">
|
||||||
|
<highlight-row condition="true" foregroundColor="red"/>
|
||||||
|
</target>
|
||||||
|
|
||||||
|
<rules>
|
||||||
|
<logger name="*" minlevel="Info" writeTo="tofile,console" />
|
||||||
|
</rules>
|
||||||
|
</nlog>
|
||||||
|
</configuration>
|
Loading…
Reference in New Issue
Block a user