btrbk: tidy logging

pull/485/head
Axel Burri 2022-06-05 20:17:59 +02:00
parent a062f42344
commit f169456613
1 changed files with 2 additions and 2 deletions

4
btrbk
View File

@ -3769,8 +3769,8 @@ sub get_best_parent($$$;@)
if($strict_related && (!grep(exists($c_rel_id{$_->[0]{node}{id}}), @parent))) { if($strict_related && (!grep(exists($c_rel_id{$_->[0]{node}{id}}), @parent))) {
# no relations by parent_uuid found # no relations by parent_uuid found
WARN "No related common parent found (by parent_uuid relationship) for: $svol->{PRINT}"; WARN "No related common parent found (by parent_uuid relationship) for: $svol->{PRINT}",
WARN "Hint: setting option \"incremental\" to \"yes\" (instead of \"strict\") will use parent: " . join(", ", map { $_->[0]{PRINT} } @parent); "Hint: setting option \"incremental\" to \"yes\" (instead of \"strict\") will use parent: " . join(", ", map $_->[0]{PRINT}, @parent);
return undef; return undef;
} }