diff --git a/logical/testing.go b/logical/testing.go index 14296e284..af11f1701 100644 --- a/logical/testing.go +++ b/logical/testing.go @@ -1,6 +1,8 @@ package logical import ( + "log" + "os" "reflect" "testing" "time" @@ -72,7 +74,7 @@ func TestSystemView() *StaticSystemView { func TestBackendConfig() *BackendConfig { return &BackendConfig{ - Logger: nil, + Logger: log.New(os.Stdout, "", log.LstdFlags), System: TestSystemView(), } }