Golang logger
log.Dump(...interface{}) // Reference to spew: https://github.com/davecgh/go-spew
log.Log(...interface{})
log.Info(...interface{})
log.Warning(...interface{})
log.Error(...interface{})
package main
import (
log "github.com/tiny-libs/logger-go"
)
func main() {
log.Info("Hello world")
}