source: code/trunk/vendor/github.com/sirupsen/logrus/terminal_check_appengine.go@ 70

Last change on this file since 70 was 67, checked in by Izuru Yakumo, 23 months ago

Use vendored modules

Signed-off-by: Izuru Yakumo <yakumo.izuru@…>

File size: 111 bytes
Line 
1// +build appengine
2
3package logrus
4
5import (
6 "io"
7)
8
9func checkIfTerminal(w io.Writer) bool {
10 return true
11}
Note: See TracBrowser for help on using the repository browser.