mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
f30b072b81
Switches calls to syscall to x/sys, which is more up to date. This is fixes a number of possible bugs on other architectures where ioctl tcget and tcset aren't implemented correctly. There are a few remaining syscall references, because x/sys doesn't have an Errno implementation yet. Also removes a ppc64le and cgo build tag that fixes building on ppc64le without cgo Signed-off-by: Christopher Jones <tophj@linux.vnet.ibm.com>
33 lines
804 B
Go
33 lines
804 B
Go
// These files implement ANSI-aware input and output streams for use by the Docker Windows client.
|
|
// When asked for the set of standard streams (e.g., stdin, stdout, stderr), the code will create
|
|
// and return pseudo-streams that convert ANSI sequences to / from Windows Console API calls.
|
|
|
|
package windowsconsole
|
|
|
|
import (
|
|
"io/ioutil"
|
|
"os"
|
|
"sync"
|
|
|
|
ansiterm "github.com/Azure/go-ansiterm"
|
|
"github.com/Sirupsen/logrus"
|
|
)
|
|
|
|
var logger *logrus.Logger
|
|
var initOnce sync.Once
|
|
|
|
func initLogger() {
|
|
initOnce.Do(func() {
|
|
logFile := ioutil.Discard
|
|
|
|
if isDebugEnv := os.Getenv(ansiterm.LogEnv); isDebugEnv == "1" {
|
|
logFile, _ = os.Create("ansiReaderWriter.log")
|
|
}
|
|
|
|
logger = &logrus.Logger{
|
|
Out: logFile,
|
|
Formatter: new(logrus.TextFormatter),
|
|
Level: logrus.DebugLevel,
|
|
}
|
|
})
|
|
}
|