(connID uint64, err error)
| 192 | } |
| 193 | |
| 194 | func FailedToQueueHandoff(connID uint64, err error) string { |
| 195 | message := fmt.Sprintf("conn[%d] %s: %v", connID, FailedToQueueHandoffMessage, err) |
| 196 | return appendJSONIfDebug(message, map[string]interface{}{ |
| 197 | "connID": connID, |
| 198 | "error": err.Error(), |
| 199 | }) |
| 200 | } |
| 201 | |
| 202 | func FailedToMarkForHandoff(connID uint64, err error) string { |
| 203 | message := fmt.Sprintf("conn[%d] %s: %v", connID, FailedToMarkForHandoffMessage, err) |
no test coverage detected