This is an automated email from the ASF dual-hosted git repository.

slachiewicz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven.git


The following commit(s) were added to refs/heads/master by this push:
     new 2786490  Fixed typo in exception logging LegacyRepositorySystem
2786490 is described below

commit 27864904fe327a92c057590b899c30daca263ba8
Author: Sylwester Lachiewicz <slachiew...@gmail.com>
AuthorDate: Sun Jun 10 17:41:24 2018 +0200

    Fixed typo in exception logging LegacyRepositorySystem
    
    Fixes #170
---
 .../org/apache/maven/repository/legacy/LegacyRepositorySystem.java    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/maven-compat/src/main/java/org/apache/maven/repository/legacy/LegacyRepositorySystem.java
 
b/maven-compat/src/main/java/org/apache/maven/repository/legacy/LegacyRepositorySystem.java
index 0acab4f..e3e7781 100644
--- 
a/maven-compat/src/main/java/org/apache/maven/repository/legacy/LegacyRepositorySystem.java
+++ 
b/maven-compat/src/main/java/org/apache/maven/repository/legacy/LegacyRepositorySystem.java
@@ -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;
         }

Reply via email to