Torsten Mielke created GERONIMO-6483:
----------------------------------------
Summary: org.apache.geronimo.transaction.manager.RecoveryImpl
should create slf4j logger using its own class name
Key: GERONIMO-6483
URL: https://issues.apache.org/jira/browse/GERONIMO-6483
Project: Geronimo
Issue Type: Bug
Security Level: public (Regular issues)
Components: transaction manager
Affects Versions: 3.0.1
Reporter: Torsten Mielke
Priority: Trivial
Attachments: GERONIMO-6483.patch
Right now org.apache.geronimo.transaction.manager.RecoveryImpl
sets up logging as follows
{code:java}
private static final Logger log = LoggerFactory.getLogger("Recovery");
{code}
but in order to configure logging for this class intuitively it should rather
use
{code:java}
private static final Logger log = LoggerFactory.getLogger(RecoveryImpl.class);
{code}
Please get this changed.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira