Skip to content

tiny-libs/logger-go

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

logger.go

Golang logger

Build Status License

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")
}