Skip to content

Commit

Permalink
remove log
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaochen-zhou committed Dec 20, 2024
1 parent 6aee433 commit 4170b1e
Showing 1 changed file with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -241,8 +241,9 @@ private static void getConnectorFiles(
String connectorPrefix,
List<File> connectors) {

log.info("getConnectorFiles-connectorNames.size(): {}. \n ", connectorNames.size());
log.info("getConnectorFiles-connectors.size(): {}. \n ", connectors.size());
// log.info("getConnectorFiles-connectorNames.size(): {}. \n ",
// connectorNames.size());
// log.info("getConnectorFiles-connectors.size(): {}. \n ", connectors.size());
if (currentModule.isFile() || connectorNames.size() == connectors.size()) {
return;
}
Expand All @@ -254,8 +255,9 @@ private static void getConnectorFiles(
log.info("getConnectorFiles-targetPath: {}. \n ", targetPath);
File[] files = targetPath.listFiles();
for (File file : Objects.requireNonNull(files)) {
log.info("getConnectorFiles-file: {}. \n ", file);
log.info("getConnectorFiles-file.getName(): {}. \n ", file.getName());
// log.info("getConnectorFiles-file: {}. \n ", file);
// log.info("getConnectorFiles-file.getName(): {}. \n ",
// file.getName());
if (file.getName().startsWith(currentModule.getName())
&& !file.getName().endsWith("javadoc.jar")
&& !file.getName().endsWith("tests.jar")) {
Expand Down

0 comments on commit 4170b1e

Please sign in to comment.