(removed int, total int)
| 601 | } |
| 602 | |
| 603 | func CircuitBreakerCleanup(removed int, total int) string { |
| 604 | message := fmt.Sprintf("%s removed %d/%d entries", CircuitBreakerCleanupMessage, removed, total) |
| 605 | return appendJSONIfDebug(message, map[string]interface{}{ |
| 606 | "removed": removed, |
| 607 | "total": total, |
| 608 | }) |
| 609 | } |
| 610 | |
| 611 | // ExtractDataFromLogMessage extracts structured data from maintnotifications log messages |
| 612 | // Returns a map containing the parsed key-value pairs from the structured data section |
no test coverage detected