Your ROOT_URL in app.ini is http://git.slaventius.ru/ but you are visiting http://37.143.12.169/test3k/authPostman/src/commit/91679cfefcb24d48fd35f184463f7987480f0ae9/vendor/github.com/sirupsen/logrus/terminal_check_notappengine.go You should set ROOT_URL correctly, otherwise the web may not work correctly.
 
 
 
 

17 lines
232 B

// +build !appengine,!js,!windows,!nacl,!plan9
package logrus
import (
"io"
"os"
)
func checkIfTerminal(w io.Writer) bool {
switch v := w.(type) {
case *os.File:
return isTerminal(int(v.Fd()))
default:
return false
}
}