Popularity
1.8
Declining
Activity
0.0
Stable
16
3
5

Programming language: Go
License: MIT License
Tags: Logging    
Latest version: v0.4

logmatic alternatives and similar packages

Based on the "Logging" category.
Alternatively, view logmatic alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of logmatic or a related project?

Add another 'Logging' Package

README

GoDoc Build Status Go Report Card codecov

logmatic

Colorized logger for Golang with dynamic log level configuration

Documentation here: https://godoc.org/github.com/mborders/logmatic

Example Usage

l := logmatic.NewLogger()
l.SetLevel(logmatic.DEBUG)

l.Trace("This will not display")
l.Debug("Something happened")
l.Info("Here is some information")
l.Warn("Do not do that")
l.Error("Something bad happened...")

l.SetLevel(logmatic.TRACE)
l.Trace("Now this will display")

l.Fatal("The application will now exit")

[Example results](example.png?raw=true "Example results")