distillog alternatives and similar packages
Based on the "Logging" category.
Alternatively, view distillog 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 -
noodlog
๐ Parametrized JSON logging library in Golang which lets you obfuscate sensitive data and marshal any kind of content. -
gologger
Simple easy to use log lib for go, logs in Colored Cosole, Simple Console, File or Elasticsearch. -
mlog
A simple logging module for go, with a rotating file feature and console logging. -
journald
Go implementation of systemd Journal's native API for 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
Clean code begins in your IDE with SonarLint
Do you think we are missing an alternative of distillog or a related project?
README
What is distillog
?
distillog
aims to offer a minimalistic logging interface that also supports
log levels. It takes the stdlib
API and only slightly enhances it. Hence, you
could think of it as levelled logging, distilled.
Yet another logging library for go(lang)?
Logging libraries are like opinions, everyone seems to have one -- Anon(?)
Most other logging libraries do either too little (stdlib) or too much (glog).
As with most other libraries, this one is opinionated. In terms of functionality it exposes, it attempts to sit somewhere between the stdlib and the majority of other logging libraries available (but leans mostly towards the spartan side of stdlib).
The stdlib does too little, you say?
Just a smidge.
Presenting varying levels of verbosity (or severity) are an important part of
what makes a program more usable or debuggable. For example, debug
or info
level messages may be useful to the developers during the development cycle.
These messages may be dropped or suppressed in production since they are not
useful to everyone. Similarly warning
messages may be emitted when a error has
been gracefully handled but the program would like to notify its human overlords
of some impending doom.
In most cases, some downstream entity "knows" how to filter the messages and
keep those that are relevant to the environment. As evidence of this, most
other languages have log libraries that support levels. Similarly some programs
offer varying verbosity levels (e.g. -v
, -vv
etc). The golang stdlib takes
a much more spartan approach (exposing only Println
and friends) so using it
in programs to emit messages of varying interest/levels can get tedious (manual
prefixes, anyone?). This is where distillog
steps in. It aims to slightly
improve on this minimalstic logging interface. Slightly.
Other libraries do too much, you say?
Ever used log.Panicf
or log.Fatalf
? Exiting your program is not something
your log library should be doing! Similarly, other libraries offer options for
maintaining old log files and rotating them. Your logging library shouldn't need
to care about this. Whatever facility (other libraries call this a "backend")
messages are sent to should determine how old messages are handled. distillog
prefers that you use lumberjack
(or an equivalent WriteCloser) depending on
where you choose to persist the messages.
But log file rotation is absolutely necessary!
Agreed, and someone's gotta do it, but it need not be your logging library!
You can use distillog
along with a lumberjack "backend". It provides an
io.WriteCloser
which performs all the magic you need. Initialize a logger
using distillog.NewStream
, pass it an instance of the io.WriteCloser
that lumberjack returns, et voila, you have a logger that does what you need.
And how is distillog
different?
distillog
aims to offer a only slightly richer interface than the stdlib.
To this end, it restricts itself to:
- presenting a minimal interface so that you can emit levelled log messages
- providing logger implementations for logging to the most common backends
- streams - e.g. stderr/stdout
- files - anything via
io.WriteCloser
(vialumberjack
) - syslog
- avoid taking on any non-essential responsibilities (colors, ahem)
- expose a logger interface, instead of an implementation
Expose an interface? Why?
By exposing an interface you can write programs that use levelled log messages,
but switch between logging to various facilities by simply instantiating the
appropriate logger as determined by the caller (Your program can offer a
command-line switch like so - --log-to=[syslog,stderr,<file>]
and the simply
instantiate the appropriate logger).
Usage/examples:
As seen in the godoc, the interface is limited to:
type Logger interface {
Debugf(format string, v ...interface{})
Debugln(v ...interface{})
Infof(format string, v ...interface{})
Infoln(v ...interface{})
Warningf(format string, v ...interface{})
Warningln(v ...interface{})
Errorf(format string, v ...interface{})
Errorln(v ...interface{})
Close() error
}
Log to stdout, or stderr using a logger instantiated like so:
outLogger := distillog.NewStdoutLogger("test")
errLogger := distillog.NewStderrLogger("test")
sysLogger := distillog.NewSyslogLogger("test")
Alternatively, you can use the package for your logging needs:
import log "github.com/amoghe/distillog"
// ... later ...
log.Infoln("Starting program")
log.Debugln("initializing the frobnicator")
log.Warningln("frobnicator failure detected, proceeding anyways...")
log.Infoln("Exiting")
If you have a file you wish to log to, you should open the file and instantiate a logger using the file handle, like so:
if fileHandle, err := ioutil.Tempfile("/tmp", "distillog-test"); err == nil {
fileLogger := distillog.NewStreamLogger("test", fileHandle)
}
If you need a logger that manages the rotation of its files, use lumberjack
,
like so:
lumberjackHandle := &lumberjack.Logger{
Filename: "/var/log/myapp/foo.log",
MaxSize: 500, // megabytes
MaxBackups: 3,
MaxAge: 28, // days
}
logger := distillog.NewStreamLogger("tag", lumberjackHandle)
// Alternatively, configure the pkg level logger to emit here
distillog.SetOutput(lumberjackHandle)
Once instantiated, you can log messages, like so:
var := "World!"
myLogger.Infof("Hello, %s", var)
myLogger.Warningln("Goodbye, cruel world!")
Contributing
- Create an issue, describe the bugfix/feature you wish to implement.
- Fork the repository
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
License
See [LICENSE.txt](LICENSE.txt)
*Note that all licence references and agreements mentioned in the distillog README section above
are relevant to that project's source code only.