mirror of
https://github.com/grafana/grafana.git
synced 2025-07-31 04:42:17 +08:00
Plugins: Introduce plugin package specific logger (#62204)
* refactor * implement with infra log for now * undo moving * update package name * update name * fix tests * update pretty signature * update naming * simplify * fix typo * delete comment * fix import * retrigger
This commit is contained in:
@ -5,10 +5,11 @@ import (
|
||||
"sync"
|
||||
"testing"
|
||||
|
||||
"github.com/grafana/grafana/pkg/infra/log"
|
||||
"github.com/stretchr/testify/require"
|
||||
|
||||
"github.com/grafana/grafana/pkg/plugins"
|
||||
"github.com/grafana/grafana/pkg/plugins/backendplugin"
|
||||
"github.com/stretchr/testify/require"
|
||||
"github.com/grafana/grafana/pkg/plugins/log"
|
||||
)
|
||||
|
||||
func TestProcessManager_Start(t *testing.T) {
|
||||
@ -270,7 +271,7 @@ func createPlugin(t *testing.T, bp backendplugin.Plugin, cbs ...func(p *plugins.
|
||||
},
|
||||
}
|
||||
|
||||
p.SetLogger(log.NewNopLogger())
|
||||
p.SetLogger(log.NewTestLogger())
|
||||
p.RegisterClient(bp)
|
||||
|
||||
for _, cb := range cbs {
|
||||
|
Reference in New Issue
Block a user