mirror of
https://github.com/rclone/rclone
synced 2024-11-01 21:49:35 +01:00
20 lines
320 B
Go
20 lines
320 B
Go
// Log the panic under unix to the log file
|
|
|
|
//+build unix
|
|
|
|
package main
|
|
|
|
import (
|
|
"log"
|
|
"os"
|
|
"syscall"
|
|
)
|
|
|
|
// redirectStderr to the file passed in
|
|
func redirectStderr(f *os.File) {
|
|
err := syscall.Dup2(int(f.Fd()), int(os.Stderr.Fd()))
|
|
if err != nil {
|
|
log.Fatalf("Failed to redirect stderr to file: %v", err)
|
|
}
|
|
}
|