Skip to content

Commit

Permalink
Graph logging level set to FINE
Browse files Browse the repository at this point in the history
  • Loading branch information
gastaldi committed Aug 28, 2014
1 parent 98d69ca commit e6789ab
Showing 1 changed file with 8 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public AddonLifecycleManager(FurnaceImpl furnace)
this.stateManager.setModuleLoader(moduleLoader);
this.loader = new AddonLoader(furnace, this, stateManager, moduleLoader);

logger.log(Level.FINE, "Instantiated AddonRTegistryImpl: " + this);
logger.log(Level.FINE, "Instantiated AddonRegistryImpl: " + this);
}

public void dispose()
Expand Down Expand Up @@ -196,10 +196,13 @@ public Void call() throws Exception

master.merge(graph);

String graphOutput = master.toString();
logger.log(Level.INFO, "\n ------------ VIEW [" + view.getName() + "]------------ "
+ (graphOutput.isEmpty() ? "EMPTY" : graphOutput)
+ " ------------ END [" + view.getName() + "]------------ ");
if (logger.isLoggable(Level.FINE))
{
String graphOutput = master.toString();
logger.log(Level.FINE, "\n ------------ VIEW [" + view.getName() + "]------------ "
+ (graphOutput.isEmpty() ? "EMPTY" : graphOutput)
+ " ------------ END [" + view.getName() + "]------------ ");
}
}

MasterGraph last = stateManager.getCurrentGraph();
Expand Down

0 comments on commit e6789ab

Please sign in to comment.