using apache commons logger

This commit is contained in:
Ryan Baxter
2017-02-20 15:56:37 -05:00
parent 06565765b8
commit df91ff7735

View File

@@ -18,7 +18,8 @@
package org.springframework.cloud.netflix.zuul.filters.route.support;
import java.util.logging.Logger;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.junit.Before;
import org.junit.Test;
import org.springframework.beans.factory.annotation.Value;
@@ -49,7 +50,7 @@ import static org.junit.Assert.assertEquals;
*/
public abstract class RibbonRetryIntegrationTestBase {
private final Logger LOG = Logger.getLogger(RibbonRetryIntegrationTestBase.class.getName());
private final Log LOG = LogFactory.getLog(RibbonRetryIntegrationTestBase.class);
@Value("${local.server.port}")
protected int port;