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 796d826 commit 99b6a00Copy full SHA for 99b6a00
src/tasks.rs
@@ -44,7 +44,7 @@ fn mysql_audit_log_rotate(sched: &mut JobScheduler, path: String, max_size: u32,
44
let new_file_name = origin_name.to_owned() + "-" + time_str.as_str() + "." + origin_file_type;
45
let new_file_path = parent_path.to_str().unwrap().to_owned() + "/" + new_file_name.as_str();
46
fs::copy(file_path, new_file_path.as_str()).unwrap();
47
- println!("Log copied to:{}", new_file_path);
+ println!("Log file copied to:{}", new_file_path);
48
49
file.set_len(0).unwrap();
50
0 commit comments