You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ti...@apache.org on 2020/04/06 20:14:14 UTC

[maven-surefire] 01/03: debug log with provider class name

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

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

commit 348b7c837cb5073cd76acff6602d184a3584ddc8
Author: tibordigana <ti...@apache.org>
AuthorDate: Mon Apr 6 21:47:01 2020 +0200

    debug log with provider class name
---
 .../main/java/org/apache/maven/plugin/surefire/AbstractSurefireMojo.java | 1 +
 1 file changed, 1 insertion(+)

diff --git a/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/AbstractSurefireMojo.java b/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/AbstractSurefireMojo.java
index 614d9c6..a8c1927 100644
--- a/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/AbstractSurefireMojo.java
+++ b/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/AbstractSurefireMojo.java
@@ -1178,6 +1178,7 @@ public abstract class AbstractSurefireMojo
         throws MojoExecutionException, MojoFailureException, SurefireExecutionException, SurefireBooterForkException,
         TestSetFailedException
     {
+        getConsoleLogger().debug( "Using the provider " + provider.getProviderName() );
         SurefireProperties effectiveProperties = setupProperties();
         ClassLoaderConfiguration classLoaderConfiguration = getClassLoaderConfiguration();
         provider.addProviderProperties();