Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 2ed1173

Browse filesBrowse files
committed
test(log): add debug log for request cdn
1 parent ef6dbdf commit 2ed1173
Copy full SHA for 2ed1173

File tree

1 file changed

+3
-0
lines changed
Filter options

1 file changed

+3
-0
lines changed

‎library/src/main/java/com/tencent/tinker/server/urlconnection/UrlConnectionUrlLoader.java

Copy file name to clipboardExpand all lines: library/src/main/java/com/tencent/tinker/server/urlconnection/UrlConnectionUrlLoader.java
+3Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424

2525
package com.tencent.tinker.server.urlconnection;
2626

27+
import com.tencent.tinker.lib.util.TinkerLog;
2728
import com.tencent.tinker.server.model.DataFetcher;
2829
import com.tencent.tinker.server.model.TinkerClientUrl;
2930

@@ -33,13 +34,15 @@
3334

3435
public class UrlConnectionUrlLoader {
3536

37+
public static final String TAG = "Tinker.UrlLoader";
3638
private final Executor executor;
3739

3840
public UrlConnectionUrlLoader() {
3941
executor = Executors.newSingleThreadExecutor();
4042
}
4143

4244
public DataFetcher<InputStream> buildLoadData(TinkerClientUrl url) {
45+
TinkerLog.i(TAG, "loadData from: %s", url.toStringUrl());
4346
return new UrlConnectionStreamFetcher(executor, url);
4447
}
4548
}

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.