Examples of trace()


Examples of org.jboss.modules.log.ModuleLogger.trace()

            }
            return loadedClass;
        }
        final ModuleLogger log = Module.log;
        final Module module = this.module;
        log.trace("Finding class %s from %s", className, module);

        final Class<?> clazz = module.loadModuleClass(className, resolve);

        if (clazz != null) {
            return clazz;
View Full Code Here

Examples of org.jpos.bsh.BSHRequestListener.trace()

        Logger logger = new Logger();
        logger.addListener(null);
        Log bSHRequestListener = new BSHRequestListener();
        bSHRequestListener.setLogger(logger);
        try {
            bSHRequestListener.trace("1\n", "l");
            fail("Expected NullPointerException to be thrown");
        } catch (NullPointerException ex) {
            assertNull("ex.getMessage()", ex.getMessage());
        }
    }
View Full Code Here

Examples of org.jruby.runtime.ThreadContext.trace()

        // uber-ThreadKill catcher, since it should always just mean "be dead"
        try {
            // Call the thread's code
            RubyModule frameClass = proc.getBlock().getFrame().getKlazz();
            try {
                if (runtime.hasEventHooks() && runtime.is2_0()) context.trace(RubyEvent.THREAD_BEGIN, null, frameClass);
                IRubyObject result = proc.call(context, arguments);
                if (runtime.hasEventHooks() && runtime.is2_0()) context.trace(RubyEvent.THREAD_END, null, frameClass);
                rubyThread.cleanTerminate(result);
            } catch (JumpException.ReturnJump rj) {
                rubyThread.exceptionRaised(rj.buildException(runtime));
View Full Code Here

Examples of org.pentaho.platform.util.logging.SimpleLogger.trace()

    logger.fatal( "This is a fatal with class as an object" + ILogger.FATAL, new Throwable() ); //$NON-NLS-1$

    logger.info( "This is an info with class as an object" + ILogger.INFO ); //$NON-NLS-1$
    logger.info( "This is an info with class as an object" + ILogger.INFO, new Throwable() ); //$NON-NLS-1$

    logger.trace( "This is a trace with class as an object" + ILogger.TRACE, new Throwable() ); //$NON-NLS-1$
    logger.trace( "This is a trace with class as a string" + ILogger.TRACE, new Throwable() ); //$NON-NLS-1$
    logger.trace( "This is a trace test" ); //$NON-NLS-1$

    Assert.assertTrue( true );
  }
View Full Code Here

Examples of org.slf4j.Logger.trace()

            case LogService.LOG_ERROR:
                log.error(message, exception);
                break;
            default:
                if (logEntry.getLevel() > LogService.LOG_DEBUG) {
                    log.trace(message, exception);
                } else if (logEntry.getLevel() < LogService.LOG_ERROR) {
                    log.error(message, exception);
                }
                break;
        }
View Full Code Here

Examples of se.llbit.chunky.renderer.scene.Scene.trace()

      }

    } else {

      Ray target = state.rayPool.get(ray);
      scene.trace(target);
      int tx = (int) QuickMath.floor(target.x.x + target.d.x * Ray.OFFSET);
      int ty = (int) QuickMath.floor(target.x.y + target.d.y * Ray.OFFSET);
      int tz = (int) QuickMath.floor(target.x.z + target.d.z * Ray.OFFSET);

      // this is intentionally incorrectly indented for readability
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.