Skip to content

Commit

Permalink
日志系统
Browse files Browse the repository at this point in the history
  • Loading branch information
TC999 committed Dec 9, 2024
1 parent fd0b2b4 commit 06b8a5b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/move_module.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
use crate::logger;
use eframe::egui;
use native_dialog::FileDialog;
use std::fs;
Expand Down Expand Up @@ -83,6 +84,7 @@ impl MoveModule {
if !source_path.exists() {
self.status_message = Some(format!("源文件夹不存在: {}", source_path.display()));
println!("源文件夹不存在: {}", source_path.display());
logger::log_error(&format!("源文件夹不存在: {}", source_path.display()));
return;
}

Expand Down

0 comments on commit 06b8a5b

Please sign in to comment.