mydb/logger_test.go

12 lines
131 B
Go
Raw Permalink Normal View History

2023-09-18 15:15:42 +08:00
package mydb
import (
"errors"
"testing"
)
func TestLogger(t *testing.T) {
err := errors.New("fake error")
LC().Error(err)
}