Skip to content
This repository has been archived by the owner on Jun 23, 2024. It is now read-only.

Commit

Permalink
add additional loggings for Aspera download
Browse files Browse the repository at this point in the history
  • Loading branch information
ruiwanguk committed Feb 26, 2015
1 parent f907caf commit c20e126
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
5 changes: 0 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,3 @@ log/
target/
.idea/

# Eclipse generated files #
###########################
/.settings
.classpath
.project
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,12 @@ public String downloadFiles(String[] remoteSourcePaths, String localDestinationD
// Pride's public location for downloading data, not used in uploading
RemoteLocation pridePublicLocation = new RemoteLocation(ebiHost, ebiUser, jarDir + File.separator + asperaPrivateKey, "");

logger.debug("EBI aspera host: {}", ebiHost);
logger.debug("EBI aspera user: {}", ebiUser);
logger.debug("EBI aspera private key: {}", jarDir + File.separator + asperaPrivateKey);

for (String path : remoteSourcePaths) {
logger.debug("EBI aspera remote path: {}", path);
pridePublicLocation.addPath(path);
}

Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/logback.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
</encoder>
</appender>

<root level="error">
<root level="DEBUG">
<appender-ref ref="FILE"/>
<appender-ref ref="STDOUT"/>
</root>
Expand Down

0 comments on commit c20e126

Please sign in to comment.