Il giorno 29/gen/2013, alle ore 11.55, [email protected] ha scritto:

> Author: coheigea
> Date: Tue Jan 29 10:55:14 2013
> New Revision: 1439829
> 
> URL: http://svn.apache.org/viewvc?rev=1439829&view=rev
> Log:
> Log Resource management exception properly
> 
> Modified:
>    syncope/branches/1_0_X/   (props changed)
>    
> syncope/branches/1_0_X/console/src/main/java/org/apache/syncope/console/pages/ResourceModalPage.java
> 
> Propchange: syncope/branches/1_0_X/
> ------------------------------------------------------------------------------
>  Merged /syncope/trunk:r1439825
> 
> Modified: 
> syncope/branches/1_0_X/console/src/main/java/org/apache/syncope/console/pages/ResourceModalPage.java
> URL: 
> http://svn.apache.org/viewvc/syncope/branches/1_0_X/console/src/main/java/org/apache/syncope/console/pages/ResourceModalPage.java?rev=1439829&r1=1439828&r2=1439829&view=diff
> ==============================================================================
> --- 
> syncope/branches/1_0_X/console/src/main/java/org/apache/syncope/console/pages/ResourceModalPage.java
>  (original)
> +++ 
> syncope/branches/1_0_X/console/src/main/java/org/apache/syncope/console/pages/ResourceModalPage.java
>  Tue Jan 29 10:55:14 2013
> @@ -111,7 +111,8 @@ public class ResourceModalPage extends B
>                         window.close(target);
> 
>                     } catch (Exception e) {
> -                        LOG.error("Failuer managing resource {}", 
> resourceTO);
> +                        LOG.error("Failure managing resource {}", 
> resourceTO);
> +                        LOG.error("Resource Management Exception:", e);

Hi Colm, why this modification?
Why not the just the following

LOG.error("Failuer managing resource {}", resourceTO, e);

Best regards,
F.

>                         error(new ResourceModel("error", "error").getObject() 
> + ":" + e.getMessage());
>                         target.add(feedbackPanel);
>                     }
> @@ -162,4 +163,4 @@ public class ResourceModalPage extends B
>             return target;
>         }
>     }
> -}
> \ No newline at end of file
> +}
> 
> 

Reply via email to