10 lines
160 B
Go
10 lines
160 B
Go
|
// +build !windows
|
||
|
|
||
|
package main
|
||
|
|
||
|
import "github.com/sirupsen/logrus"
|
||
|
|
||
|
func HookLogger(l *logrus.Logger) {
|
||
|
// Do nothing, let the logs flow to stdout/stderr
|
||
|
}
|