SEC-1070: AbstractRetryEntryPoint always uses RetryWithHttpEntryPoint logger. Converted to protected (non-static) and used getClass().

This commit is contained in:
Luke Taylor 2009-03-16 08:32:16 +00:00
parent 9de9f638fe
commit ccf422af5a
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ import java.io.IOException;
*/
public abstract class AbstractRetryEntryPoint implements ChannelEntryPoint {
//~ Static fields/initializers =====================================================================================
private static final Log logger = LogFactory.getLog(RetryWithHttpEntryPoint.class);
protected final Log logger = LogFactory.getLog(getClass());
//~ Instance fields ================================================================================================