Popularity
3.4
Declining
Activity
0.0
Stable
33
7
18

Programming language: Go
License: MIT License
Tags: Logging    

go-log alternatives and similar packages

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

Do you think we are missing an alternative of go-log or a related project?

Add another 'Logging' Package

README

go-log

a golang log lib supports level and multi handlers

Use

import "github.com/siddontang/go-log/log"

//log with different level
log.Info("hello world")
log.Error("hello world")

//create a logger with specified handler
h := NewStreamHandler(os.Stdout)
l := log.NewDefault(h)
l.Info("hello world")

go-doc

GoDoc