(cmd *cobra.Command, format string, args ...any)
| 320 | } |
| 321 | |
| 322 | func commandVerboseStatus(cmd *cobra.Command, format string, args ...any) { |
| 323 | if commandVerbose(cmd) { |
| 324 | commandOutput(cmd).Status(format, args...) |
| 325 | } |
| 326 | } |
| 327 | |
| 328 | func renderCommandError(cmd *cobra.Command, err error) { |
| 329 | renderCommandErrorWithJSON(cmd, err, false) |