Codebase list golang-github-ngaut-log / upstream/0.0_git20210830.2.0124ec0 crash_darwin.go
upstream/0.0_git20210830.2.0124ec0

Tree @upstream/0.0_git20210830.2.0124ec0 (Download .tar.gz)

crash_darwin.go @upstream/0.0_git20210830.2.0124ec0raw · history · blame

// +build darwin

package log

import (
	"log"
	"os"
	"syscall"
)

func CrashLog(file string) {
	f, err := os.OpenFile(file, os.O_WRONLY|os.O_CREATE|os.O_APPEND, 0666)
	if err != nil {
		log.Println(err.Error())
	} else {
		syscall.Dup2(int(f.Fd()), 2)
	}
}