Added info logging

This commit is contained in:
Pijus Kamandulis
2019-04-20 21:48:28 +03:00
parent 07a977f4c8
commit 39d14eaf7a
4 changed files with 28 additions and 7 deletions

10
helpers/logger.go Normal file
View File

@@ -0,0 +1,10 @@
package helpers
import (
"fmt"
)
// LogInfo - Outputs message to stdout
func LogInfo(str string) {
fmt.Println(str)
}