The verbosity level of driver logging.
(self)
| 25 | class VerbosityOption(SupportsCapabilities): |
| 26 | @property |
| 27 | def verbosity(self) -> Optional[str]: |
| 28 | """ |
| 29 | The verbosity level of driver logging. |
| 30 | """ |
| 31 | return self.get_capability(VERBOSITY) |
| 32 | |
| 33 | @verbosity.setter |
| 34 | def verbosity(self, value: str) -> None: |
nothing calls this directly
no test coverage detected