Skip to content
This repository has been archived by the owner on Nov 2, 2018. It is now read-only.

Commit

Permalink
Make the execution output cleaner and shorter.
Browse files Browse the repository at this point in the history
  • Loading branch information
pderakhshanfar committed Jul 23, 2018
1 parent e624079 commit 2ffe015
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ private Class<?> instrumentClass(String fullyQualifiedTargetClass)throws ClassNo
Class<?> result = defineClass(fullyQualifiedTargetClass, byteBuffer, 0,byteBuffer.length);
classes.put(fullyQualifiedTargetClass, result);

LoggingUtils.getEvoLogger().info("Loaded class: " + fullyQualifiedTargetClass);
// LoggingUtils.getEvoLogger().info("Loaded class: " + fullyQualifiedTargetClass);
return result;
} catch (Throwable t) {
logger.info("Error while loading class: "+t);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -181,10 +181,10 @@ public TestChromosome getChromosome() {
totalNumberOfTestsCarved = junitTests.size();
LoggingUtils.getEvoLogger().info("* Using {} carved tests from existing JUnit tests for seeding", junitTests.size());

// Printing out all of the carved test cases code
for (TestCase test : junitTests) {
LoggingUtils.getEvoLogger().info("Carved Test: {}", test.toCode());
}
// // Printing out all of the carved test cases code
// for (TestCase test : junitTests) {
// LoggingUtils.getEvoLogger().info("Carved Test: {}", test.toCode());
// }
}

ClientNodeLocal client = ClientServices.getInstance().getClientNode();
Expand Down

0 comments on commit 2ffe015

Please sign in to comment.