maddy/testutils/logger.go
fox.cpp 35c3b1c792
Restructure code tree
Root package now contains only initialization code and 'dummy' module.

Each module now got its own package. Module packages are grouped by
their main purpose (storage/, target/, auth/, etc). Shared code is
placed in these "group" packages.

Parser for module references in config is moved into config/module.

Code shared by tests (mock modules, etc) is placed in testutils.
2019-09-08 16:06:38 +03:00

25 lines
426 B
Go

package testutils
import (
"strings"
"testing"
"time"
"github.com/foxcpp/maddy/log"
)
func Logger(t *testing.T, name string) log.Logger {
if testing.Verbose() {
return log.Logger{
Out: func(_ time.Time, _ bool, str string) {
t.Helper()
t.Log(strings.TrimSuffix(str, "\n"))
},
Name: name,
Debug: true,
}
}
// MultiLog to empty slice is a blackhole.
return log.Logger{Out: log.MultiLog()}
}