fix(revert): feat: write errors and panics to tmp log file

This reverts commit 1e1b9d07b0.
why did i even do this in the first place
pull/59/head
sammy 2021-05-15 09:04:27 -04:00
parent 1e1b9d07b0
commit 83a44954cd
No known key found for this signature in database
GPG Key ID: 50EE40A2809851F5
1 changed files with 2 additions and 18 deletions

20
main.go
View File

@ -4,11 +4,7 @@ import (
"fmt"
"io"
"os"
dbg "runtime/debug"
"strings"
"strconv"
"syscall"
"io/ioutil"
"os/signal"
"os/user"
"path/filepath"
@ -22,10 +18,9 @@ import (
"golang.org/x/term"
)
var (
version = "v0.4.1-dev.9"
debug = "false"
var version = "v0.4.1-dev.9"
var (
l *lua.LState
prompt string // User's prompt, this will get set when lua side is initialized
@ -62,18 +57,7 @@ func main() {
loginshflag := getopt.Lookup('l').Seen()
interactiveflag := getopt.Lookup('i').Seen()
noexecflag := getopt.Lookup('n').Seen()
debugbool, _ := strconv.ParseBool(debug)
if debugbool {
tmpfile, _ := ioutil.TempFile("", "hilbish*.log")
// redirects stderr to our tmpfile
// this is for logging panics
err := syscall.Dup2(int(tmpfile.Fd()), int(os.Stderr.Fd()))
if err != nil {
fmt.Println("Failed to redirect stderr to file: %v", err)
}
}
if *cmdflag == "" || interactiveflag {
interactive = true
}