Commit df91ff77 by Ryan Baxter

using apache commons logger

parent 06565765
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment