You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Repro steps:
Configure seelog with archiveexploded = "false". Here's mine: <rollingfile formatid="ourlogStdout" type="date" filename="./var/log/axiom.log" datepattern="2006-01-02_03:04:05" archivetype="gzip" maxrolls="1" archivepath="./var/log/axiom.log.tgz" archiveexploded="false"/>
Run logger for a few minutes
Expected: archive includes more files over time
Actual: only original file is included in archive
/V/g/g/s/g/d/s/v/log ❯❯❯ ll
total 24
-rw-r--r-- 1 jyu admin 230B Oct 3 11:20 axiom.log
-rw-r--r-- 1 jyu admin 230B Oct 3 11:19 axiom.log.2016-10-03_11:19:56
-rw-r--r-- 1 jyu admin 1.4K Oct 3 11:16 axiom.log.tgz
/V/g/g/s/g/d/s/v/log ❯❯❯ tar -tzf axiom.log.tgz
var/log/axiom.log.2016-10-03_11:16:21
/V/g/g/s/g/d/s/v/log ❯❯❯ ll
total 24
-rw-r--r-- 1 jyu admin 230B Oct 3 11:20 axiom.log
-rw-r--r-- 1 jyu admin 1.0K Oct 3 11:20 axiom.log.2016-10-03_11:20:08
-rw-r--r-- 1 jyu admin 1.4K Oct 3 11:16 axiom.log.tgz
/V/g/g/s/g/d/s/v/log ❯❯❯ tar -tzf axiom.log.tgz
var/log/axiom.log.2016-10-03_11:16:21
The text was updated successfully, but these errors were encountered:
Repro steps:
Configure seelog with
archiveexploded = "false"
. Here's mine:<rollingfile formatid="ourlogStdout" type="date" filename="./var/log/axiom.log" datepattern="2006-01-02_03:04:05" archivetype="gzip" maxrolls="1" archivepath="./var/log/axiom.log.tgz" archiveexploded="false"/>
Run logger for a few minutes
Expected: archive includes more files over time
Actual: only original file is included in archive
The text was updated successfully, but these errors were encountered: