|
From: Benoit X. (JIRA) <no...@at...> - 2006-04-04 13:18:57
|
DefaultFormModel should log exception as a warning or error
-----------------------------------------------------------
Key: RCP-308
URL: http://opensource.atlassian.com/projects/spring/browse/RCP-308
Project: Spring Framework Rich Client Project
Type: Bug
Components: Binding System
Versions: 0.2.0
Reporter: Benoit Xhenseval
As discussed in http://forum.springframework.org/showthread.php?t=23797
DefaultFormModel catches an exception on line 286 but simply logs it as a debug.
It is probably better to log it as a warning or error.
so I suggest replacing:
...
}
catch (Exception e) {
logger.debug("Exception occurred setting value", e);
raiseBindingError(this, value, e);
}
by
...
}
catch (Exception e) {
logger.warn("Exception occurred setting value", e);
raiseBindingError(this, value, e);
}
Thank you
Benoit
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://opensource.atlassian.com/projects/spring/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira
|