Examples of info()


Examples of akka.event.LoggingAdapter.info()

    Integer originalValue = Integer.valueOf(0);

    ActorRef supervisor = system.actorOf(new Props(SupervisorActor2.class),
        "supervisor");

    log.info("Sending value 8, no exceptions should be thrown! ");
    supervisor.tell(Integer.valueOf(8));

    Integer result = (Integer) Await.result(
        Patterns.ask(supervisor, new Result(), 5000),
        Duration.create(5000, TimeUnit.MILLISECONDS));
View Full Code Here

Examples of anvil.Log.info()

      long ended = System.currentTimeMillis();
      log.debug(context.getAddress().getPathinfo() + ' ' + (ended - started) + " ms");

      long used_end = (runtime.totalMemory() - runtime.freeMemory());
      log.info("Memory (kB)  "+(used_start/1024)+" - "+(used_end/1024)+" = "+(used_end - used_start)/1024);
      //log.info("Used_end_kB   : "+);
      //log.info("Delta_kB      : "+);

    }
  }
View Full Code Here

Examples of ca.uhn.log.HapiLog.info()

                    //get message from receipt
                    String inbound = mr.getMessage();
                   
                    //log that we got the message
                    log.info( "Initiator received message: " + inbound );
                    rawInbound.info(inbound);
                   
                    //parse message
                    response = conn.getParser().parse(inbound);
                    log.debug("response parsed");
                    done = true;
View Full Code Here

Examples of ch.qos.logback.classic.Logger.info()

  @Override
  public void runThroughputTest(int lines, Histogram histogram) {
    long s1 = System.nanoTime();
    Logger logger = (Logger) LoggerFactory.getLogger(getClass());
    for (int j = 0; j < lines; j++) {
      logger.info(THROUGHPUT_MSG);
    }
    long s2 = System.nanoTime();
    long opsPerSec = (1000L * 1000L * 1000L * lines) / (s2 - s1);
    histogram.addObservation(opsPerSec);
  }
View Full Code Here

Examples of civquest.io.Messages.info()

  }
   
   
  private void dumpHumidityValues() {
    Messages messages = Messages.getMessages();
    messages.info("MWFCRivGen", "MRGenRes", "Humidity-values:");
   
    for(int y = 0;y < mapdata.getArrayHeight();y++) {
      StringBuffer currLine = new StringBuffer();
      for(int x = 0;x < mapdata.getArrayWidth();x++) {
        if(mapdata.isArrayCoordOnMap(x,y)) {
View Full Code Here

Examples of com.alibaba.druid.support.logging.JakartaCommonsLoggingImpl.info()

        impl.isDebugEnabled();
        impl.isInfoEnabled();
        impl.isWarnEnabled();
        impl.debug("");
        impl.debug("", new Exception());
        impl.info("");
        impl.warn("");
        impl.warn("", new Exception());
        impl.error("");
        impl.error("", new Exception());
        Assert.assertEquals(1, impl.getInfoCount());
View Full Code Here

Examples of com.alibaba.druid.support.logging.Jdk14LoggingImpl.info()

        impl.isDebugEnabled();
        impl.isInfoEnabled();
        impl.isWarnEnabled();
        impl.debug("");
        impl.debug("", new Exception());
        impl.info("");
        impl.warn("");
        impl.warn("", new Exception());
        impl.error("");
        impl.error("", new Exception());
        Assert.assertEquals(1, impl.getInfoCount());
View Full Code Here

Examples of com.alibaba.druid.support.logging.Log4jImpl.info()

        impl.isDebugEnabled();
        impl.isInfoEnabled();
        impl.isWarnEnabled();
        impl.debug("");
        impl.debug("", new Exception());
        impl.info("");
        impl.warn("");
        impl.warn("", new Exception());
        impl.error("");
        impl.error("", new Exception());
        Assert.assertEquals(1, impl.getInfoCount());
View Full Code Here

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

        impl.isDebugEnabled();
        impl.isInfoEnabled();
        impl.isWarnEnabled();
        impl.debug("");
        impl.debug("", new Exception());
        impl.info("");
        impl.warn("");
        impl.warn("", new Exception());
        impl.error("");
        impl.error("", new Exception());
        Assert.assertEquals(1, impl.getInfoCount());
View Full Code Here

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

        impl.isDebugEnabled();
        impl.isInfoEnabled();
        impl.isWarnEnabled();
        impl.debug("");
        impl.debug("", new Exception());
        impl.info("");
        impl.warn("");
        impl.warn("", new Exception());
        impl.error("");
        impl.error("", new Exception());
        Assert.assertEquals(1, impl.getInfoCount());
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.