Skip to content

Go core-like logger with levels and default logger

Notifications You must be signed in to change notification settings

segment-boneyard/go-log

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

go-log

Simple printf-style logger which is more or less the same as Go's core logger with log levels.

View the docs.

Example

log.Debug("something")
log.Emergency("hello %s %s", "tobi", "ferret")

l := log.New(os.Stderr, log.DEBUG, "")
l.Debug("something happened")
l.Info("hello %s", "Tobi")
l.Error("boom something exploded")

Conventions

Typically you'll want to "inherit" from a parent logger, this allows for setting changes at the root of your application to trickle down.

To do this you can use Logger.New(prefix string), for example here a child logger is created by calling .New() on the standard logger:

var log = log.Log.New("mylib")

License

MIT

About

Go core-like logger with levels and default logger

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages