package helpers

import (
	"fmt"
)

// LogInfo - Outputs message to stdout
func LogInfo(str string) {
	fmt.Println(str)
}