Skip to content

Commit

Permalink
Remove debug logs
Browse files Browse the repository at this point in the history
  • Loading branch information
stvoutsin committed Jul 1, 2024
1 parent 421622a commit 8a5f640
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/main/java/org/opencadc/tap/impl/CapGetAction.java
Original file line number Diff line number Diff line change
Expand Up @@ -172,9 +172,6 @@ private void transform(Capabilities caps) throws MalformedURLException {
AccessURL u = i.getAccessURL();
URL url = u.getURL();
String path = url.getPath();
log.debug("*****************");
log.debug(basePath);
log.debug(pathPrefix);
String npath = path.replace(basePath, pathPrefix);
URL nurl = new URL(url.getProtocol(), hostname, npath);
u.setURL(nurl);
Expand Down Expand Up @@ -232,4 +229,4 @@ private void injectAuthProviders(Capabilities caps) throws IOException {
}
}

}
}

0 comments on commit 8a5f640

Please sign in to comment.