mirror of
https://github.com/slackhq/nebula.git
synced 2025-01-11 03:48:12 +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
|
|
}
|