...

Package test

import "github.com/Sirupsen/logrus/hooks/test"
Overview
Index

Overview ▾

func NewNullLogger

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

Creates a discarding logger and installs the test hook.

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 (*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.