# README
log
log
provides a structured logger with context support.
Refer to examples/app for the source code.
Installation
go get -u github.com/bartventer/log
Usage
package main
import (
"github.com/bartventer/log"
)
func main() {
logger := log.New(log.UseLevel(log.DebugLevel))
logger.Debug("Oh, hi!")
}
License
This project is licensed under the MIT License - see the LICENSE file for details.
Acknowledgments
This project is a refactored version of the fantastic charmbracelet/log, which is a part of Charm.