mirror of
https://github.com/slackhq/nebula.git
synced 2024-12-22 12:18:30 +00:00
11 lines
180 B
Go
11 lines
180 B
Go
//go:build !windows
|
|
// +build !windows
|
|
|
|
package main
|
|
|
|
import "github.com/sirupsen/logrus"
|
|
|
|
func HookLogger(l *logrus.Logger) {
|
|
// Do nothing, let the logs flow to stdout/stderr
|
|
}
|