summaryrefslogtreecommitdiffstats
path: root/logging/logging_other.go
diff options
context:
space:
mode:
authorSean E. Russell <seanerussell@gmail.com>2020-02-13 10:15:52 -0600
committerSean E. Russell <seanerussell@gmail.com>2020-02-13 10:15:52 -0600
commit7e5c0c969c223973335c6fae5432411afc3fb060 (patch)
tree7f785ba4f692b81806209cb5f0c959e86efdba70 /logging/logging_other.go
parent4bfe0251a8893ed08654d59b8a8b8182958e907f (diff)
Fixes the directory structure.
Diffstat (limited to 'logging/logging_other.go')
-rw-r--r--logging/logging_other.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/logging/logging_other.go b/logging/logging_other.go
new file mode 100644
index 0000000..382baca
--- /dev/null
+++ b/logging/logging_other.go
@@ -0,0 +1,12 @@
+// +build !arm64
+
+package logging
+
+import (
+ "os"
+ "syscall"
+)
+
+func StderrToLogfile(logfile *os.File) {
+ syscall.Dup2(int(logfile.Fd()), 2)
+}