Skip to content

Commit

Permalink
Fixed typo in exception logging
Browse files Browse the repository at this point in the history
  • Loading branch information
slachiewicz committed Jun 10, 2018
1 parent 5b4e173 commit cd87d17
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -186,7 +186,7 @@ public Artifact createExtensionArtifact( String groupId, String artifactId, Stri
// MNG-5368: Log a message instead of returning 'null' silently.
this.logger.error( String.format(
"Invalid version specification '%s' creating extension artifact '%s:%s:%s'.",
version, groupId, artifactId, version, e ) );
version, groupId, artifactId, version ), e );

return null;
}
Expand Down Expand Up @@ -217,7 +217,7 @@ public Artifact createPluginArtifact( Plugin plugin )
// MNG-5368: Log a message instead of returning 'null' silently.
this.logger.error( String.format(
"Invalid version specification '%s' creating plugin artifact '%s'.",
version, plugin, e ) );
version, plugin ), e );

return null;
}
Expand Down

0 comments on commit cd87d17

Please sign in to comment.