Skip to content

Commit

Permalink
revert app.config
Browse files Browse the repository at this point in the history
  • Loading branch information
marona42 committed Jul 10, 2022
1 parent 6836ad7 commit 0329759
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions SCTools/SCTool_Redesigned/App.config
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,18 @@
<configSections>
<section name="nlog" type="NLog.Config.ConfigSectionHandler, NLog"/>
</configSections>

<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
</startup>

<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<targets>
<target name="logconsole" xsi:type="Console" layout="${date:format=yyyy-MM-dd HH\:mm\:ss} [${level:uppercase=true}] ${message}" />
<target xsi:type="File"
name="fileTarget"
fileName="${basedir}/logs/${shortdate}.log"
layout="${longdate} level=${level} message=${message}"
keepFileOpen ="false"
concurrentWrites ="true"/>
</targets>
<rules>
<logger name="*" minlevel="Info" writeTo="logconsole" />
<logger name="*" minlevel="Info" writeTo="fileTarget" />

</rules>
</nlog>

</configuration>

0 comments on commit 0329759

Please sign in to comment.