...

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

Documentation: github.com/sirupsen/logrus

     1  // +build appengine
     2  
     3  package logrus
     4  
     5  import (
     6  	"io"
     7  )
     8  
     9  func checkIfTerminal(w io.Writer) bool {
    10  	return true
    11  }
    12  

View as plain text