return;
if(arg0 instanceof ClassHasNoFields)
return; // Ignore
if(arg0 instanceof DiagnosticBase) {
DiagnosticBase d = (DiagnosticBase) arg0;
Logger.debug(this, "Diagnostic: "+d.getClass()+" : "+d.problem()+" : "+d.solution()+" : "+d.reason(), new Exception("debug"));
} else
Logger.debug(this, "Diagnostic: "+arg0+" : "+arg0.getClass(), new Exception("debug"));
}
}
/**