Method
succeededStatus
(definition ModuleDefinition)
Source from the content-addressed store, hash-verified
| 43 | } |
| 44 | |
| 45 | func (m ModuleManager) succeededStatus(definition ModuleDefinition) string { |
| 46 | return "[ succeeded ] " + definition.Name + ": successfully downloaded from " + definition.Url |
| 47 | } |
| 48 | |
| 49 | func (m ModuleManager) failedStatus(definition ModuleDefinition, err error) string { |
| 50 | return "[ failed ] " + definition.Name + ": download failed with error " + err.Error() |
Tested by
no test coverage detected