From 9a8356892a49cbf518c0f1627596868859ac9d77 Mon Sep 17 00:00:00 2001 From: depristo Date: Sat, 5 Mar 2011 06:08:35 +0000 Subject: [PATCH] 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 --- .../broadinstitute/sting/gatk/phonehome/GATKRunReport.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/java/src/org/broadinstitute/sting/gatk/phonehome/GATKRunReport.java b/java/src/org/broadinstitute/sting/gatk/phonehome/GATKRunReport.java index c8e25b01a..d5211c4e8 100644 --- a/java/src/org/broadinstitute/sting/gatk/phonehome/GATKRunReport.java +++ b/java/src/org/broadinstitute/sting/gatk/phonehome/GATKRunReport.java @@ -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) {