From c3a17caa80dd6ee6e009ecdda1c8af4266c54d9a Mon Sep 17 00:00:00 2001 From: houseme Date: Fri, 11 Apr 2025 17:45:59 +0800 Subject: [PATCH] Update crates/obs/src/sink.rs Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- crates/obs/src/sink.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/obs/src/sink.rs b/crates/obs/src/sink.rs index a92a980a..4df212b3 100644 --- a/crates/obs/src/sink.rs +++ b/crates/obs/src/sink.rs @@ -273,7 +273,7 @@ impl FileSink { // if the file not exists, create it if !file_exists { tokio::fs::create_dir_all(std::path::Path::new(&path).parent().unwrap()).await?; - tracing::debug!("the file not exists,create if. path: {:?}", path) + tracing::debug!("File does not exist, creating it. Path: {:?}", path) } let file = if file_exists { // If the file exists, open it in append mode