(connID uint64, newEndpoint string)
| 151 | } |
| 152 | |
| 153 | func HandoffSucceeded(connID uint64, newEndpoint string) string { |
| 154 | message := fmt.Sprintf("conn[%d] %s to %s", connID, HandoffSuccessMessage, newEndpoint) |
| 155 | return appendJSONIfDebug(message, map[string]interface{}{ |
| 156 | "connID": connID, |
| 157 | "endpoint": newEndpoint, |
| 158 | }) |
| 159 | } |
| 160 | |
| 161 | // Timeout-related log functions |
| 162 | func RelaxedTimeoutDueToNotification(connID uint64, notificationType string, timeout interface{}) string { |
no test coverage detected