Cleaner error (really now just warnings) if you can't reach the S3 for logging

git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@5377 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
depristo 2011-03-05 06:08:35 +00:00
parent 10516f5de4
commit 9a8356892a
1 changed files with 2 additions and 2 deletions

View File

@ -362,8 +362,8 @@ public class GATKRunReport {
}
private void exceptDuringRunReport(String msg, Throwable e) {
logger.warn("An occurred during GATK run reporting [everything is fine, but no report could be generated]. Message is: " + msg + ". Error message is: " + e.getMessage() + ". Stack track follows");
e.printStackTrace();
logger.warn("An occurred during GATK run reporting [everything is fine, but no report could be generated]. Message is: " + msg + ". Error message is: " + e.getMessage());
//e.printStackTrace();
}
private void exceptDuringRunReport(String msg) {