summaryrefslogtreecommitdiffstats
path: root/logging/logging_other.go
blob: 382baca682099df4a50dd9b2f1e3b3f248d9a884 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// +build !arm64

package logging

import (
	"os"
	"syscall"
)

func StderrToLogfile(logfile *os.File) {
	syscall.Dup2(int(logfile.Fd()), 2)
}