Skip to content

Commit

Permalink
Small debugging entries
Browse files Browse the repository at this point in the history
  • Loading branch information
olas committed Jul 10, 2012
1 parent 43faba5 commit 85d3923
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Expand Up @@ -79,8 +79,9 @@ protected List<? extends ITestResult> doRunTest(ICDKMolecule cdkmol,

//Make room for results
List<ITestResult> results=new ArrayList<ITestResult>();

if (requires3d){
logger.debug("Calculating 3D coordinates for " + getName() + " since requires 3D");
monitor.subTask("Calculating 3D coordinates");
IBalloonManager balloon = net.bioclipse.balloon.business.
Activator.getDefault().getJavaBalloonManager();
Expand All @@ -92,7 +93,7 @@ protected List<? extends ITestResult> doRunTest(ICDKMolecule cdkmol,
return returnError("Error generating 3D", e.getMessage());
}
}

List<IMolecule> mols = new ArrayList<IMolecule>();
mols.add(cdkmol);

Expand Down Expand Up @@ -195,6 +196,7 @@ public List<String> readLinesFromFile(String path) throws DSException {
}



/**
* Get a list of the row names from the R data model.
* @param tempvar
Expand Down
Expand Up @@ -340,6 +340,7 @@ protected IStatus run( IProgressMonitor monitor ) {
for (String testID : ds.getTests()){
IDSTest test = ds.getTest( testID );
monitor.subTask( "Initializing test: " + testID );
logger.debug( "Initializing test: " + testID );
try {
if (!test.isInitialized()){
test.initialize( monitor );
Expand Down

0 comments on commit 85d3923

Please sign in to comment.