如何使用NLog压缩日志文件

时间:2012-05-04 16:08:53

标签: compression nlog

我在我的一个项目中使用NLog,我正在尝试将文件的输出压缩。 我尝试使用压缩文件属性,但是当我查看文件时,它们不会被压缩。

你能告诉我我的错误吗?

这是我的配置:

<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" fileName="C:\Workspaces\log.xml"
                layout="${message}" keepFileOpen="true"
                archiveFileName = "C:\Workspaces\archived\log.{#####}.xml"
                archiveAboveSize = "1048576" archiveNumbering = "Sequence"
                fileAttributes="Compressed" concurrentWrites =  "true"/>
    </targets>

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

g取代;

0 个答案:

没有答案