Move print inside the if statement.
This commit is contained in:
parent
80da332beb
commit
9ed0147eed
1 changed files with 1 additions and 1 deletions
|
@ -46,8 +46,8 @@ while ( my $gitLog = $logIterator->next() ) {
|
|||
if ($author =~ /$AUTHOR_NAME_REGEX/im or (defined $LOG_MESSAGE_REGEX and $message =~ /$LOG_MESSAGE_REGEX/im)) {
|
||||
print STDERR "Including: ", $gitLog->commit(), "\n", "Author: $author", "\n\n", $message, "#" x 72, "\n"
|
||||
if $VERBOSE;
|
||||
print $gitLog->commit(), "\n";
|
||||
}
|
||||
print $gitLog->commit(), "\n";
|
||||
}
|
||||
|
||||
#
|
||||
|
|
Loading…
Reference in a new issue