Whether debugging is requested for this task. If `True` the task can assume the user wants debugging information surrounding the task logged. Common uses of this include passing debug logging flags through to tools a task runs. :API: public
(self)
| 223 | |
| 224 | @property |
| 225 | def debug(self) -> bool: |
| 226 | """Whether debugging is requested for this task. |
| 227 | |
| 228 | If `True` the task can assume the user wants debugging information surrounding the task |
| 229 | logged. Common uses of this include passing debug logging flags through to tools a task |
| 230 | runs. |
| 231 | |
| 232 | :API: public |
| 233 | """ |
| 234 | log_level: LogLevel = self.get_options().level |
| 235 | return log_level == LogLevel.DEBUG |
| 236 | |
| 237 | @property |
| 238 | def skip_execution(self): |