Skip to content

Commit

Permalink
correct log message (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
elharo authored Apr 10, 2020
1 parent 0f0f52e commit fc3b20a
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,13 @@ protected void runLogic( ReleaseDescriptor releaseDescriptor, ReleaseEnvironment
{
if ( simulating )
{
logInfo( result, "Full run would not commit changes, because suppressCommitBeforeTagOrBranch is set." );
logInfo( result, "Full run would not commit changes, "
+ "because suppressCommitBeforeTagOrBranch is set to true." );
}
else
{
logInfo( result,
"Modified POMs are not committed because suppressCommitBeforeTagOrBranch is set to false." );
"Modified POMs are not committed because suppressCommitBeforeTagOrBranch is set to true." );
}
}
// commit development versions required
Expand Down

0 comments on commit fc3b20a

Please sign in to comment.