diff options
author | emile <hanemile@protonmail.com> | 2018-10-09 17:05:25 +0200 |
---|---|---|
committer | emile <hanemile@protonmail.com> | 2018-10-09 17:05:25 +0200 |
commit | d1dbd0d66ebee806843191fd5b213500d6d48c2f (patch) | |
tree | fecc7c48998132e43dc7b865cf43f98e9437639f /llog | |
parent | 6e9ebcf82cad78b468834ce07882db3c5ac45a53 (diff) |
Trying out channels
Diffstat (limited to 'llog')
-rw-r--r-- | llog/llog.go | 4 |
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 |