diff options
Diffstat (limited to 'exit.go')
| -rw-r--r-- | exit.go | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -4,13 +4,12 @@ package config // see how this turns out import ( + "fmt" "os" - - "go.wit.com/log" ) // todo: figure out how to pass this back to argv func BadExit(reason string, err error) { - log.Exit("lib/config exiting here", reason, err) + fmt.Println("lib/config bad exit. no app callback here. FIXME", reason, err) os.Exit(-1) } |
