mirror of
https://github.com/LamGC/ContentGrabbingJi.git
synced 2025-07-05 06:47:26 +00:00
[Change] 调整Logger创建方式(getLogger(String) -> getLogger(Class));
This commit is contained in:
@ -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 {
|
||||
|
Reference in New Issue
Block a user