We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0f9982 commit 287f6b2Copy full SHA for 287f6b2
1 file changed
base/src/main/java/com/tinyengine/it/mcp/tools/GitFileReaderService.java
@@ -170,7 +170,7 @@ public String readFileFromRepo(String url) {
170
* @throws IOException If a network or I/O error occurs.
171
*/
172
public static byte[] fetchBytes(String urlString) throws IOException {
173
- log.info("开始从 Raw GitHub URL {} 中读取内容", urlString);
+ log.info("开始从 URL {} 中读取内容", urlString);
174
URL url = new URL(urlString);
175
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
176
connection.setRequestMethod("GET");
0 commit comments