Examples of log()


Examples of akka.actor.ActorSystem.log()

    final Config config = ConfigFactory.parseString(
        "akka.cluster.roles = [frontend]").withFallback(
        ConfigFactory.load("factorial"));

    final ActorSystem system = ActorSystem.create("ClusterSystem", config);
    system.log().info(
        "Factorials will start when 2 backend members in the cluster.");
    //#registerOnUp
    Cluster.get(system).registerOnMemberUp(new Runnable() {
      @Override
      public void run() {
View Full Code Here

Examples of anvil.script.Context.log()

  public void shutdown()
  {
    Context ctx = _context;
    if (ctx != null) {
      ctx.log().info("Thread shutting down");
    }
    clear();
  }

 
View Full Code Here

Examples of bitronix.tm.journal.Journal.log()

            if (log.isDebugEnabled()) log.debug("changing transaction status to " + Decoder.decodeStatus(status) + (force ? " (forced)" : ""));

            int oldStatus = this.status;
            this.status = status;
            Journal journal = TransactionManagerServices.getJournal();
            journal.log(status, resourceManager.getGtrid(), uniqueNames);
            if (force) {
                journal.force();
            }

            if (status == Status.STATUS_ACTIVE)
View Full Code Here

Examples of br.gov.serpro.ouvidoria.controller.HistoricoCtrl.Log()

               
              FuncionarioCtrl funcionarioCtrl = new FuncionarioCtrl(getDaoFactory());
             
              Funcionario funcionario = (Funcionario) funcionarioCtrl.get(funcionarioId)
             
                historico.Log(funcionario, funcionalidade, acionamento);
            } catch (DaoException e) {
                if (Constants.DEBUG) {
                    e.printStackTrace();
                }
            }
View Full Code Here

Examples of center.task.api.ITaskAPI.log()

        .setTmpDir(ai.getTmpDir(), ai.isTmpDeleteOnExit());
    ITaskAPI ta = cntx.ta;
    long id_task = cntx.id_task;
    try {
      if (ta.setProcessing(id_processor, id_task) == id_task) {
        ta.log(id_processor, id_task, "Processing...");
        try {
          cntx.info.calculate(
              TimeState.getInstance(TimeState.Time.before, State.PROCESSING),
              cntx);
          saveParams(Saved.TIME.before);
View Full Code Here

Examples of com.aelitis.azureus.plugins.dht.DHTPlugin.log()

  {
    DHTPlugin  dht = grabDHT();
   
    if ( dht != null ){
     
      dht.log( str );
    }
  }
 
  public DistributedDatabaseKey
  createKey(
View Full Code Here

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

  public void sendToLoggers(LogRecord record) {
    for (Iterator<Logger> iterator = loggers.iterator(); iterator.hasNext();) {
      Logger logger = iterator.next();
      try {
        logger.log(record);
      } catch (RuntimeException e1) {
        iterator.remove();
        diagnostic(
            "Removing '" + logger.getClass().getName() + "' due to unexecpted exception", e1);
      }
View Full Code Here

Examples of com.amazonaws.util.AWSRequestMetrics.log()

        awsRequestMetrics.startEvent(Field.ClientExecuteTime.name());
        X result = (X) client.execute(request, responseHandler, errorResponseHandler, executionContext);
        awsRequestMetrics.endEvent(Field.ClientExecuteTime.name());

        awsRequestMetrics.log();

        return result;
    }
}
       
View Full Code Here

Examples of com.caucho.server.log.AbstractAccessLog.log()

    throws IOException
  {
    AbstractAccessLog log = getAccessLog();

    if (log != null)
      log.log(req, res, this);
  }

  private LruCache<String,RequestDispatcherImpl> getDispatcherCache()
  {
    LruCache<String,RequestDispatcherImpl> cache = _dispatcherCache;
View Full Code Here

Examples of com.caucho.vfs.WriteStream.log()

    QDate.formatLocal(cb, Alarm.getCurrentTime(), "[%Y/%m/%d %H:%M:%S] ");

    cb.append(message);

    logStream.log(cb.close());

    logStream.flush();
  }

  /**
 
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.