We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9adbf2e commit 5062935Copy full SHA for 5062935
inlong-agent/agent-installer/src/main/java/org/apache/inlong/agent/installer/ModuleManager.java
@@ -220,9 +220,8 @@ private boolean updateModules(List<ModuleConfig> managerModuleList) {
220
}
221
222
private boolean downloadModule(ModuleConfig module) {
223
- LOGGER.info("download module {} begin", module.getId());
+ LOGGER.info("download module {} begin with url {}", module.getId(), module.getPackageConfig().getDownloadUrl());
224
try {
225
- LOGGER.info("download url {}", module.getPackageConfig().getDownloadUrl());
226
URL url = new URL(module.getPackageConfig().getDownloadUrl());
227
URLConnection conn = url.openConnection();
228
Map<String, String> authHeader = httpManager.getAuthHeader();
0 commit comments