Add debug when target to be unstowed doesn't exist

This commit is contained in:
Adam Spiers 2011-11-17 20:10:42 +00:00
parent 0592daf3ef
commit b5c49db524

View file

@ -638,6 +638,9 @@ sub unstow_node_orig {
fold_tree($target, $parent); fold_tree($target, $parent);
} }
} }
else {
debug(3, "$target did not exist to be unstowed");
}
return; return;
} }
@ -775,6 +778,9 @@ sub unstow_node {
); );
} }
} }
else {
debug(3, "$target did not exist to be unstowed");
}
return; return;
} }