mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-01 06:50:00 +00:00
c111b239f7
* add optional syslog logrus hook * document syslog
18 lines
294 B
Go
18 lines
294 B
Go
package format
|
|
|
|
import (
|
|
"bufio"
|
|
|
|
"gopkg.in/mcuadros/go-syslog.v2/internal/syslogparser/rfc5424"
|
|
)
|
|
|
|
type RFC5424 struct{}
|
|
|
|
func (f *RFC5424) GetParser(line []byte) LogParser {
|
|
return &parserWrapper{rfc5424.NewParser(line)}
|
|
}
|
|
|
|
func (f *RFC5424) GetSplitFunc() bufio.SplitFunc {
|
|
return nil
|
|
}
|