https://bz.apache.org/bugzilla/show_bug.cgi?id=60564

            Bug ID: 60564
           Summary: Migrating LogKit to SLF4J - Replace logkit loggers
                    with slf4j ones with keeping the current logkit
                    binding solution
           Product: JMeter
           Version: unspecified
          Hardware: All
                OS: All
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Main
          Assignee: [email protected]
          Reporter: [email protected]
  Target Milestone: ---

As being discussed in the dev thread [1], the first step would be to replace
each logkit logger with slf4j logger.

An example:

[AS-IS]
public class HTMLAssertionGui extends AbstractAssertionGui implements
KeyListener, ActionListener {

    private static final Logger log = LoggingManager.getLoggerForClass();

[TO-BE]
public class HTMLAssertionGui extends AbstractAssertionGui implements
KeyListener, ActionListener {

    private static final Logger log =
LoggerFactory.getLogger(HTMLAssertionGui.class);


[1] http://markmail.org/thread/tloqa5zmuj26nrqn

-- 
You are receiving this mail because:
You are the assignee for the bug.

Reply via email to