diff options
-rw-r--r-- | .gitignore | 5 | ||||
-rw-r--r-- | llog/llog.go | 15 |
2 files changed, 18 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore index 75eef4a..1635740 100644 --- a/.gitignore +++ b/.gitignore @@ -7,6 +7,7 @@ # Folders _obj _test +data # Architecture specific extensions/prefixes *.[568vq] @@ -23,6 +24,6 @@ _testmain.go *.exe *.test *.prof +*.csv + -# Stardata -.csv diff --git a/llog/llog.go b/llog/llog.go new file mode 100644 index 0000000..e02af74 --- /dev/null +++ b/llog/llog.go @@ -0,0 +1,15 @@ +package llog + +import ( + "fmt" +) + +// Good prints a "good" (green) message with a timestamp and the given message +func Good(text string) { + fmt.Printf("\033[36m [+] \033[0m%-60s\t", text) +} + +// Bad prints a "good" (green) message with a timestamp and the given message +func Bad(text string) { + fmt.Printf("\033[31m [+] \033[0m%-60s\t", text) +} |