You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lu...@apache.org on 2011/08/08 22:49:49 UTC

svn commit: r1155093 - /myfaces/core/branches/2.0.x/shared/src/main/java/org/apache/myfaces/shared/util/StateUtils.java

Author: lu4242
Date: Mon Aug  8 20:49:49 2011
New Revision: 1155093

URL: http://svn.apache.org/viewvc?rev=1155093&view=rev
Log:
MYFACES-3190 Annoying SEVERE: View State cannot be reconstructed + stacktrace with ViewExpiredException (Thanks to Martin Koci for provide this patch)

Modified:
    myfaces/core/branches/2.0.x/shared/src/main/java/org/apache/myfaces/shared/util/StateUtils.java

Modified: myfaces/core/branches/2.0.x/shared/src/main/java/org/apache/myfaces/shared/util/StateUtils.java
URL: http://svn.apache.org/viewvc/myfaces/core/branches/2.0.x/shared/src/main/java/org/apache/myfaces/shared/util/StateUtils.java?rev=1155093&r1=1155092&r2=1155093&view=diff
==============================================================================
--- myfaces/core/branches/2.0.x/shared/src/main/java/org/apache/myfaces/shared/util/StateUtils.java (original)
+++ myfaces/core/branches/2.0.x/shared/src/main/java/org/apache/myfaces/shared/util/StateUtils.java Mon Aug  8 20:49:49 2011
@@ -382,9 +382,9 @@ public final class StateUtils {
         }
         catch (Throwable e)
         {
-            if (log.isLoggable(Level.SEVERE))
+            if (log.isLoggable(Level.FINE))
             {
-                log.log(Level.SEVERE, "View State cannot be reconstructed", e);
+                log.log(Level.FINE, "View State cannot be reconstructed", e);
             }
             return null;
         }