mirror of
https://github.com/darakian/ddh.git
synced 2026-09-10 07:06:21 -04:00
Remove print
This commit is contained in:
parent
2282208f5e
commit
5040617688
|
|
@ -56,10 +56,6 @@ pub fn deduplicate_dirs<P: AsRef<Path> + Sync>(search_dirs: Vec<P>) -> (Vec<File
|
|||
fn traverse_and_spawn(current_path: impl AsRef<Path>, sender: Sender<ChannelPackage>) -> (){
|
||||
let current_path = fs::canonicalize(current_path)
|
||||
.expect("Error canonicalizing path");
|
||||
println!("Processing {:?}.\n Metadata {:?}",
|
||||
current_path,
|
||||
current_path.metadata().expect("Error unwrapping metadata")
|
||||
);
|
||||
let current_path_metadata = match fs::symlink_metadata(¤t_path) {
|
||||
Err(e) =>{
|
||||
sender.send(
|
||||
|
|
|
|||
Loading…
Reference in a new issue