(resource string, err error)
| 27 | var log = logger.MustGetLogger("recorder.cache") |
| 28 | |
| 29 | func dbQueryResourceFailed(resource string, err error) string { |
| 30 | return fmt.Sprintf("db query %s failed: %v", resource, err) |
| 31 | } |
| 32 | |
| 33 | func dbResourceByLcuuidNotFound(resource, lcuuid string) string { |
| 34 | return fmt.Sprintf("db %s (lcuuid: %s) not found", resource, lcuuid) |
no outgoing calls
no test coverage detected