mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-13 15:09:42 +00:00
* poc * linter: fix --------- Co-authored-by: Ryan O'Hara-Reid <ryan.oharareid@thrasher.io>
12 lines
221 B
Go
12 lines
221 B
Go
package log
|
|
|
|
import "testing"
|
|
|
|
func TestSetCustomLoghook(t *testing.T) {
|
|
t.Parallel()
|
|
logHook := func(_ string, _ string, _ ...interface{}) (bypassLibraryLogSystem bool) {
|
|
return false
|
|
}
|
|
SetCustomLogHook(logHook)
|
|
}
|