You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
262 B
Go
16 lines
262 B
Go
1 year ago
|
package nlog
|
||
|
|
||
|
import "log"
|
||
|
|
||
|
type redirector struct{}
|
||
|
|
||
|
// CollectSysLog redirects system log into logx info
|
||
|
func CollectSysLog() {
|
||
|
log.SetOutput(new(redirector))
|
||
|
}
|
||
|
|
||
|
func (r *redirector) Write(p []byte) (n int, err error) {
|
||
|
Info(string(p))
|
||
|
return len(p), nil
|
||
|
}
|