logs_generic.go 160 B

123456789
  1. // +build !windows
  2. package main
  3. import "github.com/sirupsen/logrus"
  4. func HookLogger(l *logrus.Logger) {
  5. // Do nothing, let the logs flow to stdout/stderr
  6. }