Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 775 Bytes

README.md

File metadata and controls

14 lines (11 loc) · 775 Bytes

GoDoc

This version of https://github.com/droyo/tailpipe has been modified to include additional improvements.

The tailpipe package provides an implementation of tail -F for Go. In effect, it produces files that are infinite length, and re-opens the file when it is changed, such as during log rotation. It can be used for programs that need to watch log files indefinitely.

There are several tail packages for Go available. However, most packages do not preserve the io.Reader interface, instead opting for a line-oriented approach involving chan string. By preserving the io.Reader interface, this package composes better with the standard library.