about summary refs log tree commit diff
path: root/llog/llog.go
diff options
context:
space:
mode:
Diffstat (limited to 'llog/llog.go')
-rw-r--r--llog/llog.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/llog/llog.go b/llog/llog.go
index 54620ed..b063610 100644
--- a/llog/llog.go
+++ b/llog/llog.go
@@ -6,8 +6,8 @@ import (
 )
 
 // Good prints a "good" (green) message with a timestamp and the given message
-func Good(text string) {
-	fmt.Printf("%s\033[36m [+] \033[0m%-60s\t", currentTime(), text)
+func Good(before string) {
+	fmt.Printf("%s\033[36m [+] \033[0m%-60s\t", currentTime(), before)
 }
 
 // Bad prints a "good" (green) message with a timestamp and the given message