logs_generic.go 180 B

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