MCPcopy
hub / github.com/grpc/grpc-go / InfoDepth

Function InfoDepth

grpclog/grpclog.go:137–143  ·  view source on GitHub ↗

InfoDepth logs to the INFO log at the specified depth. # Experimental Notice: This API is EXPERIMENTAL and may be changed or removed in a later release.

(depth int, args ...any)

Source from the content-addressed store, hash-verified

135// Notice: This API is EXPERIMENTAL and may be changed or removed in a
136// later release.
137func InfoDepth(depth int, args ...any) {
138 if internal.DepthLoggerV2Impl != nil {
139 internal.DepthLoggerV2Impl.InfoDepth(depth, args...)
140 } else {
141 internal.LoggerV2Impl.Infoln(args...)
142 }
143}
144
145// WarningDepth logs to the WARNING log at the specified depth.
146//

Callers 3

InfofMethod · 0.92
TestInfoDepthMethod · 0.92
InfoDepthMethod · 0.85

Calls 2

InfoDepthMethod · 0.65
InfolnMethod · 0.65

Tested by 1

TestInfoDepthMethod · 0.74