(config interface{})
| 505 | } |
| 506 | |
| 507 | func ConfigDebug(config interface{}) string { |
| 508 | message := fmt.Sprintf("%s: %+v", ConfigDebugMessage, config) |
| 509 | return appendJSONIfDebug(message, map[string]interface{}{ |
| 510 | "config": fmt.Sprintf("%+v", config), |
| 511 | }) |
| 512 | } |
| 513 | |
| 514 | // Handoff worker functions |
| 515 | func WorkerExitingDueToShutdown() string { |
no test coverage detected