mirror of
https://github.com/slackhq/nebula.git
synced 2025-01-26 18:08:49 +00:00
10 lines
180 B
Go
10 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
|
|
}
|