(cmd *cobra.Command, args []string)
| 11 | ) |
| 12 | |
| 13 | func logsCommand(cmd *cobra.Command, args []string) { |
| 14 | for _, path := range sortedLogs() { |
| 15 | Print(path) |
| 16 | } |
| 17 | } |
| 18 | |
| 19 | func logsLastCommand(cmd *cobra.Command, args []string) { |
| 20 | logs := sortedLogs() |
nothing calls this directly
no test coverage detected