mirror of
https://github.com/status-im/status-go.git
synced 2025-01-10 06:36:32 +00:00
19 lines
399 B
Go
19 lines
399 B
Go
package logutils
|
|
|
|
import (
|
|
"bytes"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/ethereum/go-ethereum/log"
|
|
)
|
|
|
|
func TestPrintOrigins(t *testing.T) {
|
|
buf := bytes.NewBuffer(nil)
|
|
handler := log.StreamHandler(buf, log.TerminalFormat(false))
|
|
require.NoError(t, enableRootLog("debug", handler))
|
|
log.Debug("hello")
|
|
require.Contains(t, buf.String(), "logutils/logger_test.go:16")
|
|
}
|