Skip to content

Commit 285583d

Browse files
committed
making output less verbose
1 parent 08ed01f commit 285583d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

biojava-core/src/test/java/org/biojava/nbio/core/sequence/io/GenbankCookbookTest.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,12 +92,12 @@ public void testProcess() throws Throwable {
9292

9393
LinkedHashMap<String, DNASequence> dnaSequences = GenbankReaderHelper.readGenbankDNASequence(dnaResource.getInputStream());
9494
for (DNASequence sequence : dnaSequences.values()) {
95-
logger.info("DNA Sequence: {}", sequence.getSequenceAsString());
95+
logger.debug("DNA Sequence: {}", sequence.getSequenceAsString());
9696
}
9797

9898
LinkedHashMap<String, ProteinSequence> protSequences = GenbankReaderHelper.readGenbankProteinSequence(protResource.getInputStream());
9999
for (ProteinSequence sequence : protSequences.values()) {
100-
logger.info("Protein Sequence: {}", sequence.getSequenceAsString());
100+
logger.debug("Protein Sequence: {}", sequence.getSequenceAsString());
101101
}
102102
/*
103103
* Method 3: With the GenbankReader Object
@@ -111,7 +111,7 @@ public void testProcess() throws Throwable {
111111
);
112112
dnaSequences = dnaReader.process();
113113

114-
logger.info("DNA Sequence: {}", dnaSequences);
114+
logger.debug("DNA Sequence: {}", dnaSequences);
115115

116116

117117
GenbankReader<ProteinSequence, AminoAcidCompound> protReader = new GenbankReader<ProteinSequence, AminoAcidCompound>(
@@ -121,7 +121,7 @@ public void testProcess() throws Throwable {
121121
);
122122
protSequences = protReader.process();
123123

124-
logger.info("Protein Sequence: {}", protSequences);
124+
logger.debug("Protein Sequence: {}", protSequences);
125125

126126
}
127127

biojava-core/src/test/java/org/biojava/nbio/core/sequence/io/GenbankReaderTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ public void CDStest() throws Exception {
128128

129129

130130
Assert.assertTrue(proteinSequences.size() == 1);
131-
logger.info("protein sequences: {}", proteinSequences);
131+
logger.debug("protein sequences: {}", proteinSequences);
132132

133133
ProteinSequence protein = new ArrayList<ProteinSequence>(proteinSequences.values()).get(0);
134134

0 commit comments

Comments
 (0)