[Change] 调整Logger创建方式(getLogger(String) -> getLogger(Class));

This commit is contained in:
2020-06-04 15:58:10 +08:00
parent 4318869846
commit 033fd0188b
11 changed files with 13 additions and 13 deletions

View File

@ -31,9 +31,9 @@ public class PixivDownloadTest {
private static CookieStore cookieStore;
private final static Logger log = LoggerFactory.getLogger(PixivDownloadTest.class.getName());
private final static Logger log = LoggerFactory.getLogger(PixivDownloadTest.class);
private static HttpHost proxy = new HttpHost("127.0.0.1", 1001);
private static final HttpHost proxy = new HttpHost("127.0.0.1", 1001);
@BeforeClass
public static void before() throws IOException, ClassNotFoundException {