mirror of
https://github.com/grafana/grafana.git
synced 2025-01-28 17:24:59 -06:00
26 lines
534 B
Go
26 lines
534 B
Go
package log
|
|
|
|
import (
|
|
"testing"
|
|
|
|
gokitlog "github.com/go-kit/log"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestCompositeLogger(t *testing.T) {
|
|
loggedArgs := [][]any{}
|
|
l := gokitlog.LoggerFunc(func(i ...any) error {
|
|
loggedArgs = append(loggedArgs, i)
|
|
return nil
|
|
})
|
|
|
|
cl := newCompositeLogger(l, l, l)
|
|
require.NotNil(t, cl)
|
|
|
|
err := cl.Log("msg", "hello")
|
|
require.NoError(t, err)
|
|
require.Len(t, loggedArgs, 3)
|
|
require.Equal(t, "msg", loggedArgs[0][0].(string))
|
|
require.Equal(t, "hello", loggedArgs[0][1].(string))
|
|
}
|