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 1a27f96 commit 0eea714Copy full SHA for 0eea714
src/builder.rs
@@ -329,8 +329,11 @@ impl NodeBuilder {
329
self
330
}
331
332
- /// Configures the [`Node`] instance to write logs to the filesystem with an optional
333
- /// `file_path` and `log_level` arguments.
+ /// Configures the [`Node`] instance to write logs to the filesystem.
+ ///
334
+ /// The `log_file_path` defaults to the [`DEFAULT_LOG_FILENAME`] in the default
335
+ /// storage directory if set to None.
336
+ /// The `log_level` defaults to [`DEFAULT_LOG_LEVEL`] if set to None.
337
pub fn set_filesystem_logger(
338
&mut self, log_file_path: Option<String>, log_level: Option<LogLevel>,
339
) -> &mut Self {
0 commit comments