mirror of
https://github.com/opencontainers/runc.git
synced 2026-07-11 06:03:57 +08:00
475aef10f7
Bump logrus so that we can use logrus.StandardLogger().Logf instead Co-authored-by: Julia Nedialkova <julianedialkova@hotmail.com> Signed-off-by: Georgi Sabev <georgethebeatle@gmail.com>
12 lines
111 B
Go
12 lines
111 B
Go
// +build appengine
|
|
|
|
package logrus
|
|
|
|
import (
|
|
"io"
|
|
)
|
|
|
|
func checkIfTerminal(w io.Writer) bool {
|
|
return true
|
|
}
|