foldable(): fix debug indentation

This commit is contained in:
Adam Spiers 2020-11-01 17:46:01 +00:00
parent 9f4f8185ac
commit 8d7b7a7310

View file

@ -1055,9 +1055,9 @@ sub foldable {
my $self = shift; my $self = shift;
my ($target) = @_; my ($target) = @_;
debug(3, "--- Is $target foldable?"); debug(3, " Is $target foldable?");
if ($self->{'no-folding'}) { if ($self->{'no-folding'}) {
debug(3, "--- no because --no-folding enabled"); debug(3, " no because --no-folding enabled");
return ''; return '';
} }
@ -1104,7 +1104,7 @@ sub foldable {
# If the resulting path is owned by stow, we can fold it # If the resulting path is owned by stow, we can fold it
if ($self->path_owned_by_package($target, $parent)) { if ($self->path_owned_by_package($target, $parent)) {
debug(3, "--- $target is foldable"); debug(3, " $target is foldable");
return $parent; return $parent;
} }
else { else {