Examples of trace()


Examples of com.whatevernot.engine.IEngine.trace()

  public void testSocket() throws Exception
  {
    ITimer timer = StopWatch.getTimer();
   
    IEngine engine = EngineFactory.makeEngine(timer);
    engine.trace(true);
   
    engine.add(this.getClass());
   
    timer.start(this, "request.split");
   
View Full Code Here

Examples of eu.mosaic_cloud.tools.exceptions.core.ExceptionTracer.trace()

      // NOTE: intentional
    }
    try {
      final ExceptionTracer delegate = this.getDelegateSafe ();
      if (delegate != null)
        delegate.trace (resolution, exception);
    } catch (final Throwable exception1) {
      // NOTE: intentional
    }
  }
 
View Full Code Here

Examples of junit.framework.TestFailure.trace()

                        buf.append("\n");
                        buftrace.append( "Failure -- ");
                        buftrace.append( item.toString() );
                        buftrace.append("\n");
                        buftrace.append( "Trace -- ");
                        buftrace.append( item.trace() );
                    }
                    en = tr.errors();
                    if (en.hasMoreElements()){
                        sresult.setResponseCode(getErrorCode());
                        buf.append( getError() );
View Full Code Here

Examples of junit.framework.TestFailure.trace()

                        buf.append("\n");
                        buftrace.append( "Error -- ");
                        buftrace.append( item.toString() );
                        buftrace.append("\n");
                        buftrace.append( "Trace -- ");
                        buftrace.append( item.trace() );
                    }
                }
                sresult.setResponseMessage(buf.toString());
                sresult.setResponseData(buftrace.toString(), null);
            }
View Full Code Here

Examples of mx4j.log.Logger.trace()

            processed = true;
         }
         else
         {
            Logger log = getLogger();
            if (log.isEnabledFor(Logger.TRACE)) log.trace(processorName + " not found");
         }
      }
      if (!processed && processor != null)
      {
         processor.writeResponse(out, in, document);
View Full Code Here

Examples of net.sf.isolation.logging.IsoLog.trace()

    if (methods == null) {
      synchronized (this.method) {
        methods = this.method.get(klass);
        if (methods == null) {
          methods = new WeakHashMap<IsoMethodNode, Method>();
          log.trace("Creating cache for: {0}", klass);
          this.method.put(klass, methods);
        }
      }
    }
    IsoMethodNode methodNode = new IsoMethodNode(methodName, parameterTypes);
View Full Code Here

Examples of org.apache.cassandra.tracing.TraceState.trace()

            byte[] sessionBytes = qm.message.parameters.get(Tracing.TRACE_HEADER);
            if (sessionBytes != null)
            {
                UUID sessionId = UUIDGen.getUUID(ByteBuffer.wrap(sessionBytes));
                TraceState state = Tracing.instance().get(sessionId);
                state.trace("Sending message to {}", poolReference.endPoint());
                Tracing.instance().stopIfNonLocal(state);
            }

            write(qm.message, qm.id, qm.timestamp, out, targetVersion);
            completed++;
View Full Code Here

Examples of org.apache.click.service.LogService.trace()

                                destination =
                                    destination.substring(lastIndex + 1);
                            }
                            String msg =
                                "deployed " + targetDir + "/" + destination;
                            logger.trace(msg);
                        }

                    } finally {
                        close(fos);
                        close(inputStream);
View Full Code Here

Examples of org.apache.commons.logging.Log.trace()

        //conf.set("mapred.output.dir", set.getTargetUri() + "/" + set.getTargetResource());
        HadoopCfgUtils.setFileOutputFormatDir(conf, set.getResourceWrite());
        HadoopCfgUtils.setOutputCommitterClass(conf, EsOutputFormat.EsOldAPIOutputCommitter.class.getName());

        if (log.isTraceEnabled()) {
            log.trace("Initialized (sink) configuration " + HadoopCfgUtils.asProperties(conf));
        }
    }

    private Settings loadSettings(Object source, boolean read) {
        return CascadingUtils.init(HadoopSettingsManager.loadFrom(source).merge(props), nodes, port, index, query, read);
View Full Code Here

Examples of org.apache.commons.logging.impl.Log4JLogger.trace()

    public void trace(Object arg0)
    {
        Log4JLogger logger = getLogger();
        if ( logger != null )
        {
            logger.trace(arg0);
        }
    }
    public void trace(Object arg0, Throwable arg1)
    {
        Log4JLogger logger = getLogger();
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.