Now with a clearer, grammatically correct message

git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@5462 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
depristo 2011-03-17 18:06:05 +00:00
parent 10466dc7d1
commit cd38dfb4ef
1 changed files with 2 additions and 2 deletions

View File

@ -362,12 +362,12 @@ 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());
logger.warn("A problem occurred during GATK run reporting [*** everything is fine, but no report could be generated; please do not post this to the support forum ***]. Message is: " + msg + ". Error message is: " + e.getMessage());
//e.printStackTrace();
}
private void exceptDuringRunReport(String msg) {
logger.warn("An occurred during GATK run reporting [everything is fine, but no report could be generated]. Message is " + msg);
logger.warn("A problem occurred during GATK run reporting [*** everything is fine, but no report could be generated; please do not post this to the support forum ***]. Message is " + msg);
}