From 1b737a0ba97a830a442506a140f6a0c672848163 Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Mon, 3 Mar 2025 12:42:05 +0100 Subject: [PATCH] Improved documentation --- runtime/src/log.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/src/log.rs b/runtime/src/log.rs index 50bb1f4a..57e33cfb 100644 --- a/runtime/src/log.rs +++ b/runtime/src/log.rs @@ -75,7 +75,7 @@ pub fn init_logging() { LOGGER.set(runtime_logger).expect("Cannot set LOGGER"); } -/// Switch the logging system to a file-based output. +/// Switch the logging system to a file-based output inside the given directory. pub fn switch_to_file_logging(logger_path: PathBuf) -> Result<(), Box>{ let log_path = FileSpec::default() .directory(logger_path)