Files
logrus/terminal_appengine.go
T
Mark Dittmer 90501cfcc5 Fix AppEngine builds
`go build -tags appengine [...]` currently yields:

```
.../github.com/sirupsen/logrus/text_formatter.go:84:4: undefined: initTerminal
```

This change implements `initTerminal` for AppEngine builds.
2018-09-17 13:50:48 -04:00

12 lines
258 B
Go

// Based on ssh/terminal:
// Copyright 2013 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build appengine
package logrus
func initTerminal(w io.Writer) {
}