Categorygithub.com/Masterminds/log-go
modulepackage
1.0.0
Repository: https://github.com/masterminds/log-go.git
Documentation: pkg.go.dev

# README

Log Package

The log package provides a common interface for logging that can be used in applications and libraries along with reference implementations for logrus, zap, the Go standard library package, and for a CLI (console app).

Go Report Card GoDoc

Why A Log Interface

In many programming languages there is a logging interface. Libraries will use use the interface for logging and then the application will choose the logging library of their choice for the application as a whole. Since everything follows the interface it works.

Go does not have a detailed interface. The logging package included in the standard library has been insufficient so many logging libraries have been created.

Various libraries/packages use the a logging implementation of their choice. When those are pulled into a larger application is will end up having multiple different logging systems. The main application needs to wire them all up or it will miss some logs. If you take a look at applications like Kubernetes, Nomad, and many others you'll discover they import many different logging implementations.

Using interfaces provides a may to move away from multiple implementation, simplify codebases, reduce binary size, and reduce threat surface area.

What This Package Provides

This library includes several things including:

  • A Go interface for leveled logging. Those levels include - Fatal, Panic, Error, Warn, Info, Debug, Trace
  • When logging messages the interface can do a message, a message with formatting string and arguments, and a message with fields (key/value pairs)
  • Package level logging functions whose implementation can be changed/set
  • Reference implementations for logrus, zap, the standard library, and a CLI
  • A simple default implementation so it just works for library testing and simple situations

Usage

The usage documentation is broken down into 3 types of usage depending on your situation. These examples are for library/package authors, applications, and logger implementation developers.

Library / Package Authors

If you are a library or package author there are two ways you can use this log package.

First, you can import the package and use the package level logging options. For example:

import(
    "github.com/Masterminds/log-go"
)

log.Info("Send Some Info")

You can use this for logging within your package.

Second, if you want to pass a logger around your package you can use the interface provided by this package. For example:

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

func NewConstructorExample(logger log.Logger) {
    return &Example{
        logger: logger,
    }
}

func (e *Example) Foo() {
    e.logger.Info("Send Some Info")
}

In your packages testing you can check log messages if you need to see that they are working and contain what you are looking for. A simple example of doing this is in the _examples directory.

For details on exactly which functions are on the package or on the Logger interface, please see the package docs.

Application Developers

If you are developing an application that will be writing logs you will want to setup and configure logging the way you want. This is where this interface based package empowers you. You can pick your logging implementation or write your own.

For example, if you want to use a standard logrus logger you can setup logging like so:

import(
    "github.com/Masterminds/log-go"
    "github.com/Masterminds/log-go/impl/logrus"
)

log.Current = logrus.NewStandard()

In this example a standard logrus logger is created, wrapped in a struct instance that conforms to the interface, and is set as the global logger to use.

The impl directory has several reference implementations and they have configurable setups.

Once you setup the global logger the way you want all the packages will use this same logger.

Logger Developers

There are many loggers and many ways to record logs. They can be written to a file, sent to stdout/stderr, sent to a logging service, and more. Each of these is possible with this package.

If you have logger you want to use you can write one that conforms to the Logger interface found in log.go. That logger can then be configured as documented in the previous section.

The impl directory has reference implementations you can look at for further examples.

Log Levels

The following log levels are currently implemented across the interface and all the reference implementations.

  • Fatal
  • Panic
  • Error
  • Warn
  • Info
  • Debug
  • Trace

# Packages

No description provided by the author
Package io provides a means of turning a log.Logger into an io.Writer for a chosen level.

# Functions

Debug logs a message at the Debug level.
Debugf formats a message according to a format specifier and logs the message at the Debug level.
Debugw logs a message at the Debug level along with some additional context (key-value pairs).
Error logs a message at the Error level.
Errorf formats a message according to a format specifier and logs the message at the Error level.
Errorw logs a message at the Error level along with some additional context (key-value pairs).
Fatal logs a message at the Fatal level and exists the application.
Fatalf formats a message according to a format specifier and logs the message at the Fatal level and exits the application.
Fatalw logs a message at the Fatal level along with some additional context (key-value pairs) and exits the application.
Info logs a message at the Info level.
Infof formats a message according to a format specifier and logs the message at the Info level.
Infow logs a message at the Info level along with some additional context (key-value pairs).
NewStandard sets up a basic logger using the general one provided in the Go standard library.
Panic logs a message at the Panic level and panics.
Panicf formats a message according to a format specifier and logs the message at the Panic level and then panics.
Panicw logs a message at the Panic level along with some additional context (key-value pairs) and then panics.
Trace logs a message at the Trace level.
Tracef formats a message according to a format specifier and logs the message at the Trace level.
Tracew logs a message at the Trace level along with some additional context (key-value pairs).
Warn logs a message at the Warn level.
Warnf formats a message according to a format specifier and logs the message at the Warning level.
Warnw logs a message at the Warning level along with some additional context (key-value pairs).

# Constants

DebugLevel is the constant to use when setting the Debug level for loggers provided by this library.
ErrorLevel is the constant to use when setting the Error level for loggers provided by this library.
FatalLevel is the constant to use when setting the Fatal level for loggers provided by this library.
InfoLevel is the constant to use when setting the Info level for loggers provided by this library.
PanicLevel is the constant to use when setting the Panic level for loggers provided by this library.
TraceLevel is the constant to use when setting the Trace level for loggers provided by this library.
WarnLevel is the constant to use when setting the Warn level for loggers provided by this library.

# Variables

Current contains the logger used for the package level logging functions.

# Structs

StdLogger is a struct that wraps the general logger provided by the Go standard library and causes it to meet the log.Logger interface.

# Interfaces

Logger is an interface for Logging.

# Type aliases

Fields represents a map of key-value pairs where the value can be any Go type.