Skip to content

Commit

Permalink
Some better logging, #155
Browse files Browse the repository at this point in the history
  • Loading branch information
josemduarte committed Feb 19, 2015
1 parent 3c7fa1b commit 6e2b8ed
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ public Object clone() {
try {
copy = (SequenceAlignmentCluster) super.clone();
} catch (CloneNotSupportedException e) {
e.printStackTrace();
logger.error("CloneNotSupportedException caught",e);
}
// deep copy sequences
copy.uniqueSequenceList = new ArrayList<UniqueSequenceList>();
Expand Down Expand Up @@ -249,7 +249,7 @@ private AFPChain alignPairByStructure(Atom[] ca1Seq, Atom[] ca2Seq) {
System.out.println(afp.toFatcat(ca1Seq, ca2Seq));
}
} catch (StructureException e) {
e.printStackTrace();
logger.error("StructureException caught",e);
}
return afp;
}
Expand Down

0 comments on commit 6e2b8ed

Please sign in to comment.