Merge pull request #481 from darrenmcc/import-io

Fixed import
This commit is contained in:
Simon Eskildsen
2017-02-27 07:05:40 -05:00
committed by GitHub
3 changed files with 5 additions and 2 deletions
+2
View File
@@ -2,6 +2,8 @@
package logrus
import "io"
// IsTerminal returns true if stderr's file descriptor is a terminal.
func IsTerminal(f io.Writer) bool {
return true
+1
View File
@@ -3,6 +3,7 @@
package logrus
import (
"io"
"os"
"golang.org/x/sys/unix"
+2 -2
View File
@@ -8,8 +8,8 @@
package logrus
import (
"io"
"os"
"io"
"os"
"syscall"
"unsafe"
)