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/10/10 16:47:15 UTC

[maven-artifact-plugin] branch master updated: log as info instead of warn

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 39d45aa  log as info instead of warn
39d45aa is described below

commit 39d45aa736fbe048e27d0c3ac3b30405b9d1cc6a
Author: Hervé Boutemy <hb...@apache.org>
AuthorDate: Sun Oct 10 18:47:12 2021 +0200

    log as info instead of warn
---
 .../apache/maven/plugins/artifact/buildinfo/ReferenceBuildinfoUtil.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/maven/plugins/artifact/buildinfo/ReferenceBuildinfoUtil.java b/src/main/java/org/apache/maven/plugins/artifact/buildinfo/ReferenceBuildinfoUtil.java
index 0559599..a7f9de6 100644
--- a/src/main/java/org/apache/maven/plugins/artifact/buildinfo/ReferenceBuildinfoUtil.java
+++ b/src/main/java/org/apache/maven/plugins/artifact/buildinfo/ReferenceBuildinfoUtil.java
@@ -302,7 +302,7 @@ class ReferenceBuildinfoUtil
         }
         catch ( ArtifactNotFoundException e )
         {
-            log.warn( "Reference buildinfo file not found: "
+            log.info( "Reference buildinfo file not found: "
                 + "it will be generated from downloaded reference artifacts" );
         }