debug emits a log message if debugging is enabled (see function body).
(s *compiler.S, msg string, args ...interface{})
| 646 | |
| 647 | // debug emits a log message if debugging is enabled (see function body). |
| 648 | func (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 | } |
no test coverage detected