rss-dl/helpers/logger.go

11 lines
122 B
Go
Raw Normal View History

2019-04-20 19:48:28 +01:00
package helpers
import (
"fmt"
)
// LogInfo - Outputs message to stdout
func LogInfo(str string) {
fmt.Println(str)
}