Package com.db4o.diagnostic

Examples of com.db4o.diagnostic.DiagnosticBase


        if(!logDEBUG)
          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"));
      }
View Full Code Here

TOP

Related Classes of com.db4o.diagnostic.DiagnosticBase

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.