[jboss-jira] [JBoss JIRA] (JBJCA-1021) Fully qualified class name should be used for logger
Jesper Pedersen (JIRA)
jira-events at lists.jboss.org
Mon Apr 1 09:45:42 EDT 2013
Jesper Pedersen created JBJCA-1021:
--------------------------------------
Summary: Fully qualified class name should be used for logger
Key: JBJCA-1021
URL: https://issues.jboss.org/browse/JBJCA-1021
Project: IronJacamar
Issue Type: Bug
Components: Code Generator
Reporter: Jesper Pedersen
Assignee: Jeff Zhang
Priority: Minor
Fix For: 1.1.0.Beta5
The following
{noformat}
private static Logger log = Logger.getLogger("TxLogManagedConnection");
{noformat}
should be
{noformat}
private static Logger log = Logger.getLogger(TxLogManagedConnection.class.getName());
{noformat}
--
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
More information about the jboss-jira
mailing list