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