mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 17:14:44 +01:00
17 lines
331 B
Go
17 lines
331 B
Go
// Log the panic to the log file - for oses which can't do this
|
|
|
|
// +build !windows,!darwin,!dragonfly,!freebsd,!linux,!nacl,!netbsd,!openbsd
|
|
|
|
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/ncw/rclone/fs"
|
|
)
|
|
|
|
// redirectStderr to the file passed in
|
|
func redirectStderr(f *os.File) {
|
|
fs.ErrorLog(nil, "Can't redirect stderr to file")
|
|
}
|