SetDebug sets debug mode
(debug bool)
| 9 | |
| 10 | // SetDebug sets debug mode |
| 11 | func SetDebug(debug bool) { |
| 12 | debugFlag = debug |
| 13 | } |
| 14 | |
| 15 | func debugLog(format string, args ...interface{}) { |
| 16 | if !debugFlag { |
no outgoing calls
searching dependent graphs…