khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame] | 1 | package logrus |
2 | |||||
3 | import ( | ||||
4 | "golang.org/x/sys/unix" | ||||
5 | ) | ||||
6 | |||||
7 | // IsTerminal returns true if the given file descriptor is a terminal. | ||||
8 | func isTerminal(fd int) bool { | ||||
9 | _, err := unix.IoctlGetTermio(fd, unix.TCGETA) | ||||
10 | return err == nil | ||||
11 | } |