You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@geronimo.apache.org by "Torsten Mielke (JIRA)" <ji...@apache.org> on 2013/07/12 10:27:48 UTC

[jira] [Created] (GERONIMO-6483) org.apache.geronimo.transaction.manager.RecoveryImpl should create slf4j logger using its own class name

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