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:38:33 UTC

[myfaces] 01/01: Revert "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 revert-505-MYFACES-4554
in repository https://gitbox.apache.org/repos/asf/myfaces.git

commit 27b12d3f58734d7da14ffab91ba3acee81c4a1a0
Author: Paul A. Nicolucci <pn...@gmail.com>
AuthorDate: Sat Jan 28 10:38:27 2023 -0500

    Revert "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 6207c423f..f1a20724e 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.FINEST,
+                LOG.log(Level.INFO, 
                         "Could not generate LambdaPropertyDescriptor for "
                                 + target.getName() + ". Use PropertyDescriptor...",
                         e);