logerror logs the error and returns it.
(err error)
| 18 | |
| 19 | // logerror logs the error and returns it. |
| 20 | func logerror(err error) error { |
| 21 | errf("ERROR: %v", err) |
| 22 | return err |
| 23 | } |
| 24 | |
| 25 | // Logf logs a message using the package logger. |
| 26 | func Logf(s string, v ...any) { |
no outgoing calls
no test coverage detected