1
0
mirror of https://github.com/rclone/rclone.git synced 2025-07-09 16:57:13 +02:00
Files
rclone/cmd/redirect_stderr_unix.go
2016-09-19 17:13:41 +01:00

21 lines
352 B
Go

// Log the panic under unix to the log file
// +build !windows,!solaris,!plan9
package cmd
import (
"log"
"os"
"golang.org/x/sys/unix"
)
// redirectStderr to the file passed in
func redirectStderr(f *os.File) {
err := unix.Dup2(int(f.Fd()), int(os.Stderr.Fd()))
if err != nil {
log.Fatalf("Failed to redirect stderr to file: %v", err)
}
}