Closed jonenst closed 3 years ago
https://github.com/gliderlabs/logspout/commit/621524edba170d901
func backlog() bool { - if os.Getenv("BACKLOG") == "false" { - return false - } - return true + return os.Getenv("BACKLOG") == "false" }
Since v3.2.7 you have to set BACKLOG=false to get the backlog...
Thanks for the heads up. I've corrected this and added tests
cool, thanks for the quick fix!
https://github.com/gliderlabs/logspout/commit/621524edba170d901
Since v3.2.7 you have to set BACKLOG=false to get the backlog...