package test

import "github.com/sirupsen/logrus/hooks/test"

Index

Types

type Hook

type Hook struct {
	Entries []*logrus.Entry
}

test.Hook is a hook designed for dealing with logs in test scenarios.

func NewGlobal

func NewGlobal() *Hook

Installs a test hook for the global logger.

func NewLocal

func NewLocal(logger *logrus.Logger) *Hook

Installs a test hook for a given local logger.

func NewNullLogger

func NewNullLogger() (*logrus.Logger, *Hook)

Creates a discarding logger and installs the test hook.

func (*Hook) Fire

func (t *Hook) Fire(e *logrus.Entry) error

func (*Hook) LastEntry

func (t *Hook) LastEntry() (l *logrus.Entry)

LastEntry returns the last entry that was logged or nil.

func (*Hook) Levels

func (t *Hook) Levels() []logrus.Level

func (*Hook) Reset

func (t *Hook) Reset()

Reset removes all Entries from this test hook.

Source Files

test.go

Version
v0.11.4
Published
Feb 27, 2017
Platform
js/wasm
Imports
2 packages
Last checked
5 hours ago

Tools for package owners.