We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5890f65 commit 4af7b75Copy full SHA for 4af7b75
crates/stackable-telemetry/src/tracing/settings/mod.rs
@@ -85,14 +85,11 @@ impl SettingsBuilder {
85
}
86
87
/// Set specific [`FileLogSettings`].
88
- pub fn file_log_settings_builder<P>(
+ pub fn file_log_settings_builder(
89
self,
90
- path: P,
+ path: impl AsRef<Path>,
91
filename_suffix: impl Into<String>,
92
- ) -> FileLogSettingsBuilder
93
- where
94
- P: AsRef<Path>,
95
- {
+ ) -> FileLogSettingsBuilder {
96
FileLogSettingsBuilder {
97
common_settings: self.build(),
98
file_log_dir: path.as_ref().to_path_buf(),
0 commit comments