Sha256: 11a823b3831099c872b27e4d00486c6b65986aa2ef56eaa359fa76a6d49ef399

Contents?: true

Size: 754 Bytes

Versions: 3

Compression:

Stored size: 754 Bytes

Contents

<?xml version="1.0" ?>
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

    <targets>
        <target name="file" xsi:type="File"
            layout="${longdate} ${logger} ${message}" 
            fileName="${basedir}/logs/logfile.txt" 
            archiveFileName="${basedir}/archives/log.{#####}.txt"
            archiveEvery="Minute"
            archiveAboveSize="10000"
            archiveNumbering="Rolling"
            maxArchiveFiles="3"
            concurrentWrites="true"
            keepFileOpen="false"
            encoding="iso-8859-2" />
    </targets>

    <rules>
        <logger name="*" minlevel="Debug" writeTo="file" />
    </rules>
</nlog>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
nlog-1.0.0.505.20100822 docs/examples/targets/Configuration File/File/Archive3/NLog.config
nlog-1.0.0.505 docs/examples/targets/Configuration File/File/Archive3/NLog.config
nlog-1.0.0.505-mswin32 docs/examples/targets/Configuration File/File/Archive3/NLog.config