You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by pa...@apache.org on 2023/01/28 15:18:01 UTC

[myfaces] branch main updated: MYFACES-4554: log FINEST rather than INFO

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

paulnicolucci pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/myfaces.git


The following commit(s) were added to refs/heads/main by this push:
     new a6895a74a MYFACES-4554: log FINEST rather than INFO
     new 1f5b3723d Merge pull request #505 from pnicolucci/MYFACES-4554
a6895a74a is described below

commit a6895a74af3ce4f43fb430de5f5a228bd22a7c5c
Author: Paul Nicolucci <pn...@gmail.com>
AuthorDate: Sat Jan 28 09:25:56 2023 -0500

    MYFACES-4554: log FINEST rather than INFO
---
 .../apache/myfaces/core/api/shared/lang/PropertyDescriptorUtils.java  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/api/src/main/java/org/apache/myfaces/core/api/shared/lang/PropertyDescriptorUtils.java b/api/src/main/java/org/apache/myfaces/core/api/shared/lang/PropertyDescriptorUtils.java
index f1a20724e..6207c423f 100644
--- a/api/src/main/java/org/apache/myfaces/core/api/shared/lang/PropertyDescriptorUtils.java
+++ b/api/src/main/java/org/apache/myfaces/core/api/shared/lang/PropertyDescriptorUtils.java
@@ -116,13 +116,13 @@ public class PropertyDescriptorUtils
             }
             catch (IllegalAccessException e)
             {
-                LOG.log(Level.FINEST, 
+                LOG.log(Level.FINEST,
                         "Could not generate LambdaPropertyDescriptor for "
                                 + target.getName() + ". Use PropertyDescriptor...");
             }
             catch (Throwable e)
             {
-                LOG.log(Level.INFO, 
+                LOG.log(Level.FINEST,
                         "Could not generate LambdaPropertyDescriptor for "
                                 + target.getName() + ". Use PropertyDescriptor...",
                         e);