Status implements plugins.ProcAdapter.
(id string)
| 52 | |
| 53 | // Status implements plugins.ProcAdapter. |
| 54 | func (a *procToolAdapter) Status(id string) (string, error) { |
| 55 | info, err := a.supervisor().Status(id) |
| 56 | if err != nil { |
| 57 | return "", err |
| 58 | } |
| 59 | return formatProcInfo(info), nil |
| 60 | } |
| 61 | |
| 62 | // Logs implements plugins.ProcAdapter. |
| 63 | func (a *procToolAdapter) Logs(id string, tail int) (string, error) { |
nothing calls this directly
no test coverage detected