Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/op/go-logging
/ rec
Function
rec
log_test.go:39–45 ·
view source on GitHub ↗
(log *Logger, r int)
Source
from the content-addressed store, hash-verified
37
func
a(log *Logger) { b(log) }
38
39
func
rec(log *Logger, r int) {
40
if
r == 0 {
41
a(log)
42
return
43
}
44
rec(log, r-1)
45
}
46
47
func
testCallpath(t *testing.T, format string, expect string) {
48
buf := &bytes.Buffer{}
Callers
1
testCallpath
Function · 0.85
Calls
1
a
Function · 0.85
Tested by
no test coverage detected