(message string, data ...interface{})
| 111 | } |
| 112 | |
| 113 | func debugMessage(message string, data ...interface{}) { |
| 114 | if isTesting() { |
| 115 | fmt.Printf("[DEBUG] %s\n", message) |
| 116 | |
| 117 | for _, entry := range data { |
| 118 | fmt.Println(entry) |
| 119 | } |
| 120 | } |
| 121 | } |
| 122 | |
| 123 | func botMessage(message string) { |
| 124 | if isTesting() { |
no test coverage detected