Examples of debug()


Examples of org.rythmengine.conf.RythmConfiguration.debug()

        ILoggerFactory logFact = rc.get(RythmConfigurationKey.LOG_FACTORY_IMPL);
        Logger.registerLoggerFactory(logFact);

        // check if it needs to debug the conf information
        if (rawConf.containsKey("rythm.debug_conf") && Boolean.parseBoolean(rawConf.get("rythm.debug_conf").toString())) {
            rc.debug();
        }
    }

    /**
     * Create a rythm engine instance with default configuration
View Full Code Here

Examples of org.slf4j.Logger.debug()

  double debugLoop(int len) {
    Logger logger = LoggerFactory.getLogger(PerfTest.class);
    long start = System.currentTimeMillis();
    for (int i = 0; i < len; i++) {
      logger.debug("hello");
    }

    long end = System.currentTimeMillis();

    long duration = end - start;
View Full Code Here

Examples of org.slf4j.ext.XLogger.debug()

  // See http://bugzilla.slf4j.org/show_bug.cgi?id=114
  public void testLocationExtraction_Bug114() {
    XLogger logger = XLoggerFactory.getXLogger("UnitTest");
    int line = 137; // next line is line number 134
    logger.exit();
    logger.debug("hello");

    assertEquals(2, listAppender.list.size());

    {
      LoggingEvent e = listAppender.list.get(0);
View Full Code Here

Examples of org.tamacat.log.impl.Log4jLogger.debug()

      out = new ObjectOutputStream(os);
      out.writeObject(logger);
      byte[] serialize = os.toByteArray();
      assertNotNull(serialize);
      //System.out.println(new String(serialize));
      logger.debug("Serialize OK. length=" + serialize.length);
     
      //FileInputStream is = new FileInputStream("logger.ser");
      ByteArrayInputStream is = new ByteArrayInputStream(serialize);
      in = new ObjectInputStream(is);
      Object obj = in.readObject();
View Full Code Here

Examples of pt.opensoft.logging.Logger.debug()

    public void beforeActionExecute(HttpRequest request, ActionWrapper actionWrapper) throws ResourceException {

    Logger resourceLogger = actionWrapper.getLogger().getWrapper();

    resourceLogger.debug("REQUEST WS: ");
      resourceLogger.debug(request);
      resourceLogger.debug("REQUEST WS ENDED");

      resourceLogger.fine("Tentando obter acesso ao resource do webservice...");
View Full Code Here

Examples of railo.runtime.cfx.RequestImpl.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 rocket.generator.rebind.GeneratorContext.debug()

  protected Set<TypeMatcher> loadBlackListFromPackage(final Package packagee) {
    Checker.notNull("parameter:package", packagee);

    final GeneratorContext context = this.getGeneratorContext();
    context.delayedBranch();
    context.debug(packagee.getName());

    final Set<TypeMatcher> expressions = new HashSet<TypeMatcher>();

    final String fileName = this.getResourceName(packagee, SerializationConstants.BLACKLIST_FILENAME);
    InputStream inputStream = null;
View Full Code Here

Examples of rocket.logging.client.Logger.debug()

  protected void debug(final String loggerName, final String message, final Throwable throwable) {
    final Logger logger = this.getLogger(loggerName);

    if (null == throwable) {
      logger.debug(message);
    } else {
      logger.debug(message, throwable);
    }
  }
View Full Code Here

Examples of twitter4j.Logger.debug()

                    Object value = field.get(this);
                    String strValue = String.valueOf(value);
                    if (value != null && field.getName().matches("oAuthConsumerSecret|oAuthAccessTokenSecret|password")) {
                        strValue = String.valueOf(value).replaceAll(".", "*");
                    }
                    log.debug(field.getName() + ": " + strValue);
                } catch (IllegalAccessException ignore) {
                }
            }
        }
    }
View Full Code Here

Examples of webit.script.Template.debug()

       
        template.merge(new DiscardOut());
       
        labelCache.clear();
        pointCount = 0;
        template.debug(KeyValuesUtil.EMPTY_KEY_VALUES, new DiscardOut(), new BreakPointListener() {

            public void onBreak(String label, Context context, Statement statement, Object result) {
                labelCache.add(label);
                pointCount ++;
            }
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.