Examples of info()


Examples of com.liferay.portal.kernel.log.Log.info()

    }
    else if ((level == LogService.LOG_ERROR) && log.isErrorEnabled()) {
      log.error(message, logEntry.getException());
    }
    else if ((level == LogService.LOG_INFO) && log.isInfoEnabled()) {
      log.info(message, logEntry.getException());
    }
    else if ((level == LogService.LOG_WARNING) && log.isWarnEnabled()) {
      log.warn(message, logEntry.getException());
    }
  }
View Full Code Here

Examples of com.mysql.clusterj.core.util.Logger.info()

        boolean debugEnabled = logger.isDebugEnabled();
        boolean traceEnabled = logger.isTraceEnabled();
        boolean infoEnabled = logger.isInfoEnabled();
        logger.debug("Debug here.");
        logger.trace("Trace here.");
        logger.info("Info here.");
        logger.warn("Warn here.");
        logger.error("Error here.");
        logger.fatal("Fatal here.");
    }
}
View Full Code Here

Examples of com.netflix.priam.agent.NodeStatus.info()

        JSONObject json = new JSONObject();

        NodeStatus nodeTool = nodeToolProvider.get();
        json.put("version", VERSION);
        json.put("current_time_ms", System.currentTimeMillis());
        json.put("info", nodeTool.info());
        json.put("is_joined", nodeTool.isJoined());
        json.put("endpoint", nodeTool.getEndpoint());
        json.put("exception_count", nodeTool.getExceptionCount());
        json.put("live_nodes", nodeTool.getLiveNodes());
        json.put("moving_nodes", nodeTool.getMovingNodes());
View Full Code Here

Examples of com.netflix.priam.utils.JMXNodeTool.info()

    } catch (JMXConnectionException e) {
      return Response.status(503).entity("JMXConnectionException")
          .build();
    }
        logger.debug("node tool info being called");
        return Response.ok(nodetool.info(), MediaType.APPLICATION_JSON).build();
    }

    @GET
    @Path("/ring/{id}")
    public Response cassRing(@PathParam("id") String keyspace) throws IOException, InterruptedException, JSONException
View Full Code Here

Examples of com.spotify.docker.client.DockerClient.info()

  public void setup() throws Exception {
    // LXC has a bug where the TERM signal isn't sent to containers, so we can only run this test
    // if docker runs with the native driver.
    // See: https://github.com/docker/docker/issues/2436
    final DockerClient dockerClient = getNewDockerClient();
    assumeThat(dockerClient.info().executionDriver(), startsWith("native"));
  }

  @Test
  public void testNoIntOnExit() throws Exception {
    startDefaultMaster();
View Full Code Here

Examples of com.sun.sgs.impl.service.data.store.DbUtilities.Databases.info()

      ComponentRegistry.class, TransactionProxy.class
                    },
                    directory, properties, systemRegistry, txnProxy);
      dbTxn = env.beginTransaction(Long.MAX_VALUE);
      Databases dbs = DbUtilities.getDatabases(env, dbTxn, logger);
      infoDb = dbs.info();
      classesDb = dbs.classes();
      oidsDb = dbs.oids();
      namesDb = dbs.names();
      nodeId = DataStoreHeader.getNextId(
    DataStoreHeader.NEXT_NODE_ID_KEY, infoDb, dbTxn, 1);
View Full Code Here

Examples of com.sun.tools.internal.ws.processor.modeler.wsdl.ConsoleErrorReporter.info()

                cer.debug(exception);
            }

            @Override
            public void info(SAXParseException exception) {
                cer.info(exception);
            }

            public void enableDebugging(){
                cer.enableDebugging();
            }
View Full Code Here

Examples of com.sun.tools.ws.processor.modeler.wsdl.ConsoleErrorReporter.info()

                cer.debug(exception);
            }

            @Override
            public void info(SAXParseException exception) {
                cer.info(exception);
            }

            public void enableDebugging(){
                cer.enableDebugging();
            }
View Full Code Here

Examples of de.flapdoodle.embed.process.io.progress.IProgressListener.info()

      }

      InputStream downloadStream = openConnection.getInputStream();

      long length = openConnection.getContentLength();
      progress.info(progressLabel, "DownloadSize: " + length);

      if (length == -1) length = DEFAULT_CONTENT_LENGTH;


      long downloadStartedAt = System.currentTimeMillis();
View Full Code Here

Examples of edu.stanford.bmir.protege.web.server.logging.WebProtegeLogger.info()

    @Override
    public LoadProjectResult execute(final LoadProjectAction action, ExecutionContext executionContext) {
        // Load project in parallel (as we don't return it, but want it ready for further calls).
        final WebProtegeLogger webProtegeLogger = WebProtegeLoggerManager.get(LoadProjectActionHandler.class);
        long t0 = System.currentTimeMillis();
        webProtegeLogger.info("Loading project: " + action.getProjectId());
        OWLAPIProjectManager pm = OWLAPIProjectManager.getProjectManager();
        pm.getProject(action.getProjectId());
        long t1 = System.currentTimeMillis();
        webProtegeLogger.info(".... loaded project in " + (t1 - t0) + " ms");
        final ProjectId projectId = action.getProjectId();//project.getProjectId();
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.