rss-dl/helpers/logger.go

11 lines
122 B
Go

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