You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2021/04/11 17:38:58 UTC

[maven-resolver] branch 1.6.x updated: [MRESOLVER-168] add DEBUG message on artifact resolving from repos

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

hboutemy pushed a commit to branch 1.6.x
in repository https://gitbox.apache.org/repos/asf/maven-resolver.git


The following commit(s) were added to refs/heads/1.6.x by this push:
     new 6f13b7c  [MRESOLVER-168] add DEBUG message on artifact resolving from repos
6f13b7c is described below

commit 6f13b7ce6623c786c93b78f86019c164007fef79
Author: Hervé Boutemy <hb...@apache.org>
AuthorDate: Sun Apr 4 23:54:18 2021 +0200

    [MRESOLVER-168] add DEBUG message on artifact resolving from repos
---
 .../java/org/eclipse/aether/internal/impl/DefaultArtifactResolver.java   | 1 +
 1 file changed, 1 insertion(+)

diff --git a/maven-resolver-impl/src/main/java/org/eclipse/aether/internal/impl/DefaultArtifactResolver.java b/maven-resolver-impl/src/main/java/org/eclipse/aether/internal/impl/DefaultArtifactResolver.java
index c703dfc..321d832 100644
--- a/maven-resolver-impl/src/main/java/org/eclipse/aether/internal/impl/DefaultArtifactResolver.java
+++ b/maven-resolver-impl/src/main/java/org/eclipse/aether/internal/impl/DefaultArtifactResolver.java
@@ -353,6 +353,7 @@ public class DefaultArtifactResolver
                 LOGGER.debug( "Verifying availability of {} from {}", local.getFile(), repos );
             }
 
+            LOGGER.debug( "Resolving artifact {} from {}", artifact, repos );
             AtomicBoolean resolved = new AtomicBoolean( false );
             Iterator<ResolutionGroup> groupIt = groups.iterator();
             for ( RemoteRepository repo : repos )