Builder: set path filter.
(mut self, path: impl Into<String>)
| 145 | |
| 146 | /// Builder: set path filter. |
| 147 | pub fn with_path(mut self, path: impl Into<String>) -> Self { |
| 148 | self.path = Some(path.into()); |
| 149 | self |
| 150 | } |
| 151 | |
| 152 | /// Builder: set the output format. |
| 153 | pub fn with_format(mut self, format: LogFormat) -> Self { |
no outgoing calls