Examples of debug()


Examples of com.alibaba.druid.support.logging.NoLoggingImpl.debug()

        NoLoggingImpl impl = new NoLoggingImpl(DruidDataSource.class.getName());
      
        impl.isDebugEnabled();
        impl.isInfoEnabled();
        impl.isWarnEnabled();
        impl.debug("");
        impl.debug("", new Exception());
        impl.info("");
        impl.warn("");
        impl.warn("", new Exception());
        impl.error("");
View Full Code Here

Examples of com.alibaba.druid.support.logging.SLF4JImpl.debug()

        SLF4JImpl impl = new SLF4JImpl(DruidDataSource.class.getName());
      
        impl.isDebugEnabled();
        impl.isInfoEnabled();
        impl.isWarnEnabled();
        impl.debug("");
        impl.debug("", new Exception());
        impl.info("");
        impl.warn("");
        impl.warn("", new Exception());
        impl.error("");
View Full Code Here

Examples of com.allaire.cfx.Request.debug()

    }
        catch (CFXTagException e) {
      throw Caster.toPageException(e);
    }
    Request req=new RequestImpl(pageContext,attributes);
    Response rsp=new ResponseImpl(pageContext,req.debug());
    try {
      ct.processRequest(req,rsp);
    } catch (Exception e) {
      throw Caster.toPageException(e);
    }
View Full Code Here

Examples of com.allen_sauer.gwt.log.client.Logger.debug()

    if (isDebugEnabled()) {
      message = format(toPrefix(LOG_LEVEL_TEXT_DEBUG), message);
      for (Iterator iterator = loggers.iterator(); iterator.hasNext();) {
        Logger logger = (Logger) iterator.next();
        try {
          logger.debug(message, e);
        } catch (RuntimeException e1) {
          iterator.remove();
          diagnostic("Removing '" + GWT.getTypeName(logger) + "' due to unexecpted exception", e1);
        }
      }
View Full Code Here

Examples of com.arjuna.common.util.logging.Logi18n.debug()

  public static void writeLogMessages() {
    // Don't init the log in a member variable - it must be done AFTER System.out is changed.
    // TODO: this needs to be cleaner, or we need each test in it's own JVM!
    Logi18n log = LogFactory.getLogi18n(CLASS, "TestLevels");
    log.debug("testMessage", new Object[] {"1st", "debug"});
    log.info("testMessage", new Object[] {"1st", "info"});
    log.warn("testMessage", new Object[] {"1st", "warn"});
    log.error("testMessage", new Object[] {"1st", "error"});
    log.fatal("testMessage", new Object[] {"1st", "fatal"});
  }
View Full Code Here

Examples of com.badlogic.gdx.scenes.scene2d.ui.Table.debug()

  }

  public static Table newTable() {
    Table t = new Table();
    if( DebugUI ) {
      t.debug();
    }
    return t;
  }

  public static TextButton newButton( String text ) {
View Full Code Here

Examples of com.citytechinc.cq.component.maven.util.LogSingleton.debug()

    LOG.debug(widgetConfigs.size() + " Widget Configurations found");

    this.annotationToWidgetConfigMap = new HashMap<Class<?>, WidgetConfigHolder>();

    for (WidgetConfigHolder curConfig : widgetConfigs) {
      LOG.debug("Widget Config -- " + curConfig.getWidgetClass() + " : " + curConfig.getMakerClass() + " : "
        + curConfig.getAnnotationClass() + " : " + curConfig.getXtype());
      if (curConfig.getAnnotationClass() != null) {
        this.annotationToWidgetConfigMap.put(curConfig.getAnnotationClass(), curConfig);
      }
    }
View Full Code Here

Examples of com.dragome.compiler.utils.Log.debug()

      out.close();
    }

    Log logger= Log.getLogger();
    String newJunkName= "webapp.js";
    logger.debug("Creating assembly " + newJunkName);
    out= new FileWriter(new File(assembly, newJunkName));
    sizeOfCurrentJunk= 0;
    junkCount++;
  }
View Full Code Here

Examples of com.dtolabs.rundeck.core.execution.BaseLogger.debug()

                    break;
                case Logger.WARN:
                    baseLogger1.warn(message);
                    break;
                case Logger.DEBUG:
                    baseLogger1.debug(message);
                    break;
                case Logger.INFO:
                default:
                    baseLogger1.log(message);
                    break;
View Full Code Here

Examples of com.dtrules.session.DTState.debug()

        for(int i=0;i<tests.length;i+=2){
            try{
               session.execute(tests[i]);
               String result = state.datapop().stringValue();
               if(tests[i+1].equals(result.trim())){
                   state.debug("test: << "+tests[i]+" >> expected: "+tests[i+1]+" --passed\n");
               }else{
                   state.debug("test: << "+tests[i]+" >> expected: "+tests[i+1]+" result:"+result+" --FAILED\n");
               }
               state.debug("\n");
            }catch(Exception e){
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.