repositorypackage
1.0.0
Repository: https://github.com/tiny-libs/logger-go.git
Documentation: pkg.go.dev
# Packages
No description provided by the author
# README
logger.go
Golang logger
Available methods:
log.Dump(...interface{}) // Reference to spew: https://github.com/davecgh/go-spew
log.Log(...interface{})
log.Info(...interface{})
log.Warning(...interface{})
log.Error(...interface{})
Example usage:
package main
import (
log "github.com/tiny-libs/logger-go"
)
func main() {
log.Info("Hello world")
}