MCPcopy Create free account
hub / github.com/google/gapid / debug

Method debug

gapil/compiler/plugins/encoder/encoder.go:648–653  ·  view source on GitHub ↗

debug emits a log message if debugging is enabled (see function body).

(s *compiler.S, msg string, args ...interface{})

Source from the content-addressed store, hash-verified

646
647// debug emits a log message if debugging is enabled (see function body).
648func (e *encoder) debug(s *compiler.S, msg string, args ...interface{}) {
649 const enabled = false
650 if enabled {
651 e.LogI(s, msg, args...)
652 }
653}

Callers 6

buildClassEncodeFuncsMethod · 0.95
buildStateEncodeFuncMethod · 0.95
encodeFieldMethod · 0.95
encodeValueMethod · 0.95

Calls 1

LogIMethod · 0.80

Tested by

no test coverage detected