(errList errcode.Errors)
| 349 | } |
| 350 | |
| 351 | func LogError(errList errcode.Errors) { |
| 352 | for _, e1 := range errList { |
| 353 | log.Error().Err(e1).Msgf("error: %v", e1) |
| 354 | } |
| 355 | } |
| 356 | |
| 357 | // extractPathVars extracts rootSpace, registryId, pathPackageType from the path |
| 358 | // Path format: /pkg/:rootSpace/:registry/:pathPackageType/... |
no test coverage detected
searching dependent graphs…