summaryrefslogtreecommitdiff
path: root/exit.go
diff options
context:
space:
mode:
Diffstat (limited to 'exit.go')
-rw-r--r--exit.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/exit.go b/exit.go
index 8acd5e8..ad6195b 100644
--- a/exit.go
+++ b/exit.go
@@ -11,12 +11,12 @@ import (
func okExit(thing string) {
if thing != "" {
- log.Info("gemini exit:", thing, "ok")
+ log.Info("regex exit:", thing, "ok")
}
os.Exit(0)
}
func badExit(err error) {
- log.Info("gemini failed: ", err)
+ log.Info("regex failed: ", err)
os.Exit(-1)
}