mlog alternatives and similar packages
Based on the "Logging" category.
Alternatively, view mlog alternatives based on common mentions on social networks and blogs.
-
spew
Implements a deep pretty printer for Go data structures to aid in debugging -
seelog
logging functionality with flexible dispatching, filtering, and formatting. -
logutils
Utilities for slightly better logging in Go (Golang) extending the standard logger. -
Onelog
Dead simple, super fast, zero allocation and modular logger for Golang -
loggo
A logging library for Go. Doesn't use the built in go log standard library, but instead offers a replacement. -
httpretty
Pretty-prints your regular HTTP requests on your terminal for debugging (similar to http.DumpRequest). -
rollingwriter
RollingWriter is an auto-rotate io.Writer implementation with multi policies to provide log file rotation. -
ozzo-log
High performance logging supporting log severity, categorization, and filtering. Can send filtered log messages to various targets (e.g. console, network, mail). -
sqldb-logger
A logger for Go SQL database driver without modify existing *sql.DB stdlib usage. -
xlog
A structured logger for net/context aware HTTP handlers with flexible dispatching. -
logur
An opinionated logger interface and collection of logging best practices with adapters and integrations for well-known libraries (logrus, go-kit log, zap, zerolog, etc). -
logex
An golang log lib, supports tracking and level, wrap by standard log lib -
gologger
Simple easy to use log lib for go, logs in Colored Cosole, Simple Console, File or Elasticsearch. -
stdlog
Stdlog is an object-oriented library providing leveled logging. It is very useful for cron jobs. -
go-cronowriter
A simple writer that rotate log files automatically based on current date and time, like cronolog. -
distillog
distilled levelled logging (think of it as stdlib + log levels). -
slf
The Structured Logging Facade (SLF) for Go (like SLF4J but structured and for Go) -
Kiwi Logs&Context
Structured logger & context keeper for Go language -
slog
The reference implementation of the Structured Logging Facade (SLF) for Go -
gomol
Gomol is a library for structured, multiple-output logging for Go with extensible logging outputs -
go-rethinklogger
Automatically persists all the logs of your Go application inside RethinkDB. -
kemba
A tiny debug logging tool inspired by debug, great for CLI tools and applications. -
MrZ's go-logger
Easy to use, extendable and super fast logging package for Go -
gone/log
Fast, extendable, full-featured, std-lib source compatible log library.
Scout APM - Leading-edge performance monitoring starting at $39/month
Do you think we are missing an alternative of mlog or a related project?
Popular Comparisons
README
A simple logging module for go, with a rotating file feature and console logging.
Installation
go get github.com/jbrodriguez/mlog
Usage
Sample usage
Write to stdout/stderr and create a rotating logfile
package main
import "github.com/jbrodriguez/mlog"
func main() {
mlog.Start(mlog.LevelInfo, "app.log")
mlog.Info("Hello World !")
ipsum := "ipsum"
mlog.Warning("Lorem %s", ipsum)
}
Write to stdout/stderr only
package main
import "github.com/jbrodriguez/mlog"
func main() {
mlog.Start(mlog.LevelInfo, "")
mlog.Info("Hello World !")
ipsum := "ipsum"
mlog.Warning("Lorem %s", ipsum)
}
By default, the log will be rolled over to a backup file when its size reaches 10Mb and 10 such files will be created (and eventually reused).
Alternatively, you can specify the max size of the log file before it gets rotated, and the number of backup files you want to create, with the StartEx function.
package main
import "github.com/jbrodriguez/mlog"
func main() {
mlog.StartEx(mlog.LevelInfo, "app.log", 5*1024*1024, 5)
mlog.Info("Hello World !")
ipsum := "ipsum"
mlog.Warning("Lorem %s", ipsum)
}
This will rotate the file when it reaches 5Mb and 5 backup files will eventually be created.
Setting logger flags:
mlog.DefaultFlags = log.Ldate|log.Ltime|log.Lmicroseconds|log.Lshortfile
Output
I: 2015/05/15 07:09:45 main.go:10: Hello World !
W: 2015/05/15 07:09:45 main.go:13: Lorem ipsum