(mut self, level: impl Into<String>)
| 609 | /// Create a new configuration with the given log level. |
| 610 | #[must_use] |
| 611 | pub fn with_log_level(mut self, level: impl Into<String>) -> Self { |
| 612 | self.log_level = level.into(); |
| 613 | self |
| 614 | } |
| 615 | |
| 616 | /// Create a new configuration with a database URL. |
| 617 | #[must_use] |
no outgoing calls
no test coverage detected