stdlog alternatives and similar packages
Based on the "Logging" category.
Alternatively, view stdlog 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
Seelog is a native Go logging library that provides flexible asynchronous dispatching, filtering, and formatting. -
go-logger
Simple logger for Go programs. Allows custom formats for messages. -
rollingwriter
Rolling writer is an IO util for auto rolling write in go. -
httpretty
Package httpretty prints the HTTP requests you make with Go pretty on your terminal. -
sqldb-logger
A logger for Go SQL database driver without modifying existing *sql.DB stdlib usage. -
loggo
A logging library for Go. Doesn't use the built in go log standard library, but instead offers a replacement. -
ozzo-log
A Go (golang) package providing high-performance asynchronous logging, message filtering by severity and category, and multiple message targets. -
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. -
noodlog
๐ Parametrized JSON logging library in Golang which lets you obfuscate sensitive data and marshal any kind of content. -
mlog
A simple logging module for go, with a rotating file feature and console logging. -
slf
The Structured Logging Facade (SLF) for Go (like SLF4J but structured and for Go) -
Kiwi Logs&Context
Fast, structured, with filters and dynamic sinks. No levels. Logger & context keeper for Go language ๐ฅ It smell like a mushroom. -
logmatic
Colorized logger for Golang with dynamic log level configuration -
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 -
kemba
A tiny debug logging tool. Ideal for CLI tools and command applications. Inspired by https://github.com/visionmedia/debug -
go-rethinklogger
Automatically persists all the logs of your Go application inside RethinkDB. -
MrZ's go-logger
:mag: Easy to use, extendable and super fast logging package for Go
Access the most powerful time series database as a service
Do you think we are missing an alternative of stdlog or a related project?
Popular Comparisons
README
This repository contains logging packages for Go:
- stdlog is the main package of this repository, it is a simple and fast logger to the standard output.
- buflog and golog are customizable logging class which can be used as a standalone or as a building block for other loggers. stdlog is built upon them.
- log just provides a common interface for logging libraries.
You are more than welcome to ask questions on the Go mailing-list and open issues here if you find bugs.
stdlog
Package stdlog provides simple and fast logging to the standard output (stdout) and is optimized for programs launched via a shell or cron. It can also be used to log to a file by redirecting the standard output to a file. This package is thread-safe.
Basic examples:
logger := stdlog.GetFromFlags()
logger.Info("Connecting to the server...")
logger.Errorf("Connection failed: %q", err)
Will output:
2014-04-02 18:09:15.862 INFO Connecting to the API...
2014-04-02 18:10:14.347 ERROR Connection failed (Server is unavailable).
Log*() functions can be used to avoid evaluating arguments when it is expensive and unnecessary:
logger.Debug("Memory usage: %s", getMemoryUsage())
if LogDebug() { logger.Debug("Memory usage: %s", getMemoryUsage()) }
If debug logging is off the getMemoryUsage() will be executed on the first line while it will not be executed on the second line.
List of command-line arguments:
-log=info
Log events at or above this level are logged.
-stderr=false
Logs are written to standard error (stderr) instead of standard
output.
-flushlog=none
Until this level is reached nothing is output and logs are stored
in the memory. Once a log event is at or above this level, it
outputs all logs in memory as well as the future log events. This
feature should not be used with long-running processes.
The available levels are the eight ones described in RFC 5424 (debug, info, notice, warning, error, critical, alert, emergency) and none.
Some use cases:
- By default, all logs except debug ones are output to the stdout. Which is useful to follow the execution of a program launched via a shell.
- A program launched by a crontab where the variable
MAILTO
is set with-debug -flushlog=error
will send all logs generated by the program only if an error happens. When there is no error the email will not be sent. my_program > /var/log/my_program/my_program-$(date+%Y-%m-%d-%H%M%S).log
will create a log file in /var/log/my_program each time it is run.
buflog
Package buflog provides a buffered logging class that accumulates logs in memory until the flush threshold is reached which release stored logs, the buffered logger then act as a normal logger.
Basic example:
logger := buflog.New(os.Stdout, log.Info, log.Error)
logger.Info("Connecting to the server...") // Outputs nothing
logger.Error("Connection failed") // Outputs both lines
golog
Package golog provides a customizable logging class which can be used as a standalone or as a building block for other loggers.
Basic example:
logger := golog.New(os.Stdout, log.Info)
logger.Info("Connecting to the server...")
logger.Errorf("Connection failed: %q", err)
Will output:
2014-04-02 18:09:15.862 INFO Connecting to the API...
2014-04-02 18:10:14.347 ERROR Connection failed (Server is unavailable).
Log*() functions can be used to avoid evaluating arguments when it is expensive and unnecessary:
logger.Debug("Memory usage: %s", getMemoryUsage())
if logger.LogDebug() { logger.Debug("Memory usage: %s", getMemoryUsage()) }
If debug logging is off getMemoryUsage() will be executed on the first line while it will not be executed on the second line.
log
Package log provides a common interface for logging libraries.