WithVerbose tells the [Executor] to output more information about the tasks that are run.
(verbose bool)
| 364 | // WithVerbose tells the [Executor] to output more information about the tasks |
| 365 | // that are run. |
| 366 | func WithVerbose(verbose bool) ExecutorOption { |
| 367 | return &verboseOption{verbose} |
| 368 | } |
| 369 | |
| 370 | type verboseOption struct { |
| 371 | verbose bool |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…