[jboss-jira] [JBoss JIRA] Created: (LOGTOOL-12) Generated classes should be using a different logger method

David Lloyd (JIRA) jira-events at lists.jboss.org
Mon Mar 28 10:37:38 EDT 2011


Generated classes should be using a different logger method
-----------------------------------------------------------

                 Key: LOGTOOL-12
                 URL: https://issues.jboss.org/browse/LOGTOOL-12
             Project: Log Tool
          Issue Type: Bug
      Security Level: Public (Everyone can see)
            Reporter: David Lloyd
             Fix For: 1.0.0.Beta6


Right now the generated classes are using the errorf/warnf/etc. methods.  However using these methods causes an incorrectly-reported source file name/line number/class name/method name in logs which use these formats.

Instead, the logf and logv methods should be used.  Specifically, this form:
{noformat}
   logger.logf(FQCN, Level.INFO, cause, format, param1, param2, ...);
{noformat}

The FCQN should be a "private static final String" field defined in each logger class and initialized to "LoggerClassName.class.getName()".  Be sure to import the org.jboss.logging.Logger.Level class either directly or use it via Logger.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira


More information about the jboss-jira mailing list