Fixed typo in exception logging LegacyRepositorySystem

Fixes #170
This commit is contained in:
Sylwester Lachiewicz 2018-06-10 17:41:24 +02:00
parent ca45efdbf5
commit 27864904fe
1 changed files with 2 additions and 2 deletions

View File

@ -186,7 +186,7 @@ public class LegacyRepositorySystem
// 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;
}
@ -217,7 +217,7 @@ public class LegacyRepositorySystem
// 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;
}