我有一个seelog配置文件,如
<seelog minlevel="info">
<outputs>
<console />
<rollingfile type="date" datepattern="060201" filename="/tmp/-myApp.log" maxrolls="5" archivetype="none"/>
</outputs>
</seelog>
出来的是像/tmp/-myApp.log.142711这样的文件,我期望/tmp/142711-myApp.log,正如https://github.com/cihub/seelog/wiki/Receiver-reference qoute所建议的那样:
* In case of 'date' rolling, the file names will be formed this way:
time.Now().Format(rollfileWriter.datePattern)+" "+rollFileWriter.fileName)
可以以某种方式实现我的预期行为吗?我是否以错误的方式思考?
相关分类