SyslogOutput returns a log.Output implementation that will send messages to the system syslog daemon. Regular messages will be written with INFO priority, debug messages will be written with DEBUG priority. Returned log.Output object is goroutine-safe.
()
| 33 | // |
| 34 | // Returned log.Output object is goroutine-safe. |
| 35 | func SyslogOutput() (Output, error) { |
| 36 | return nil, errors.New("log: syslog output is not supported on windows") |
| 37 | } |