...

Source file src/github.com/sirupsen/logrus/terminal_check_aix.go

Documentation: github.com/sirupsen/logrus

     1  // +build !appengine,!js,!windows,aix
     2  
     3  package logrus
     4  
     5  import "io"
     6  
     7  func checkIfTerminal(w io.Writer) bool {
     8  	return false
     9  }
    10  

View as plain text