Skip to content

Commit

Permalink
Remove debugging message unless needed
Browse files Browse the repository at this point in the history
  • Loading branch information
nigelhorne committed Jun 5, 2024
1 parent e487b84 commit 797d001
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ged2site
Original file line number Diff line number Diff line change
Expand Up @@ -6541,7 +6541,7 @@ sub print_person
if(defined($phrase) && ($phrase->length() > 0)) {
push @phrases, $phrase;
$phrase = Data::Text->new();
print Data::Dumper->new([\@phrases])->Dump();
print Data::Dumper->new([\@phrases])->Dump() if($opts{'v'});
$bio_dt->append(conjunction(map { $_->as_string() } @phrases))->append('.');
undef @phrases;
}
Expand Down

0 comments on commit 797d001

Please sign in to comment.