com.proofpoint.log.Logger.info()方法的使用及代码示例

x33g5p2x  于2022-01-24 转载在 其他  
字(6.8k)|赞(0)|评价(0)|浏览(342)

本文整理了Java中com.proofpoint.log.Logger.info()方法的一些代码示例,展示了Logger.info()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Logger.info()方法的具体详情如下:
包路径:com.proofpoint.log.Logger
类名称:Logger
方法名:info

Logger.info介绍

[英]Logs a message at INFO level.

Usage example:

  1. logger.info("value is %s (%d ms)", value, time);

If the format string is invalid or the arguments are insufficient, an error will be logged and execution will continue.
[中]在信息级别记录消息。
用法示例:

  1. logger.info("value is %s (%d ms)", value, time);

如果格式字符串无效或参数不足,将记录错误并继续执行。

代码示例

代码示例来源:origin: com.proofpoint.platform/log

  1. public synchronized void disableConsole()
  2. {
  3. log.info("Disabling stderr output");
  4. ROOT.removeHandler(consoleHandler);
  5. consoleHandler = null;
  6. }

代码示例来源:origin: com.proofpoint.galaxy/galaxy-coordinator

  1. private void expectedStateStoreUp()
  2. {
  3. if (storeUp.compareAndSet(false, true)) {
  4. log.info("Expected state store is up");
  5. }
  6. }

代码示例来源:origin: com.proofpoint.platform/log

  1. @SuppressWarnings("MethodMayBeStatic")
  2. public void logToFile(String logPath, int maxHistory, DataSize maxSize, DataSize maxTotalSize)
  3. {
  4. log.info("Logging to %s", logPath);
  5. RollingFileHandler rollingFileHandler = new RollingFileHandler(logPath, maxHistory, maxSize, maxTotalSize);
  6. ROOT.addHandler(rollingFileHandler);
  7. }

代码示例来源:origin: com.proofpoint.platform/cassandra-experimental

  1. @Override
  2. public void run()
  3. {
  4. log.info("Listening for thrift clients...");
  5. serverEngine.serve();
  6. }

代码示例来源:origin: com.proofpoint.platform/cassandra-experimental

  1. public void stopServer()
  2. {
  3. log.info("Stopping listening for thrift clients");
  4. serverEngine.stop();
  5. }
  6. }

代码示例来源:origin: com.proofpoint.platform/jmx-http

  1. @PUT
  2. public void stopAnnouncing(@Context SecurityContext securityContext, @HeaderParam("Authorization") String authHeader)
  3. {
  4. adminServerCredentialVerifier.authenticate(securityContext, authHeader);
  5. if (announcer != null) {
  6. log.info("Received shutdown request. Stopping discovery announcer.");
  7. announcer.destroy();
  8. }
  9. }
  10. }

代码示例来源:origin: com.proofpoint.platform/bootstrap

  1. @Override
  2. public void flush()
  3. {
  4. BufferedReader in = new BufferedReader(new StringReader(getBuffer().toString()));
  5. while (true) {
  6. try {
  7. String line = in.readLine();
  8. if (line == null) {
  9. break;
  10. }
  11. logger.info("%s", line);
  12. }
  13. catch (IOException e) {
  14. throw new Error(e); // should never get here
  15. }
  16. }
  17. getBuffer().setLength(0);
  18. }
  19. }

代码示例来源:origin: com.proofpoint.platform/log

  1. /**
  2. * write the current buffer contents to the underlying logger.
  3. */
  4. @Override
  5. public synchronized void flush()
  6. throws IOException
  7. {
  8. super.flush();
  9. String record = this.toString("UTF-8");
  10. reset();
  11. if (record.isEmpty() || record.equals(lineSeparator)) {
  12. // avoid empty records
  13. return;
  14. }
  15. logger.info("%s", record);
  16. }
  17. }

代码示例来源:origin: com.proofpoint.platform/cassandra-experimental

  1. @Override
  2. public void startRPCServer()
  3. {
  4. synchronized (this) {
  5. if (!isRunning) {
  6. log.info("Cassandra starting...");
  7. server = new ThriftServer(listenAddr, listenPort);
  8. server.start();
  9. isRunning = true;
  10. }
  11. }
  12. }

代码示例来源:origin: com.proofpoint.platform/bootstrap

  1. log.info("Life cycle stopping...");
  2. stopList(stopTrafficInstances, StopTraffic.class);
  3. log.info("Life cycle unannounced...");
  4. long stopTrafficDelay = config.getStopTrafficDelay().toMillis();
  5. if (stopTrafficDelay != 0) {
  6. log.info("Life cycle stopped accepting new requests...");
  7. stopList(managedInstances, PreDestroy.class);
  8. log.info("Life cycle stopped.");

代码示例来源:origin: com.proofpoint.platform/cassandra-experimental

  1. @Override
  2. public void stopRPCServer()
  3. {
  4. synchronized (this) {
  5. if (isRunning) {
  6. log.info("Cassandra shutting down...");
  7. server.stopServer();
  8. try {
  9. server.join();
  10. }
  11. catch (InterruptedException e) {
  12. log.error(e, "Interrupted while waiting for thrift server to stop");
  13. Thread.currentThread().interrupt();
  14. }
  15. isRunning = false;
  16. }
  17. }
  18. }

代码示例来源:origin: com.proofpoint.platform/log

  1. @SuppressWarnings("IOResourceOpenedButNotSafelyClosed")
  2. private void rewireStdStreams()
  3. {
  4. logConsole(new NonCloseableOutputStream(System.err));
  5. log.info("Logging to stderr");
  6. redirectStdStreams();
  7. }

代码示例来源:origin: com.proofpoint.platform/bootstrap

  1. throw new Exception("System already starting");
  2. log.info("Life cycle starting...");
  3. log.info("Life cycle startup complete. System ready.");

代码示例来源:origin: com.proofpoint.platform/bootstrap

  1. log.info("Loading configuration");
  2. builder = builder
  3. .withFile(System.getProperty("config"))
  4. log.info("Initializing logging");
  5. LoggingConfiguration configuration = configurationFactory.build(LoggingConfiguration.class);
  6. logging.configure(configuration);
  7. try {
  8. NodeInfo nodeInfo = injector.getInstance(NodeInfo.class);
  9. log.info("Node ID %s", nodeInfo.getNodeId());

代码示例来源:origin: com.proofpoint.galaxy/galaxy-coordinator

  1. @Override
  2. public void setServiceInventory(List<ServiceDescriptor> serviceInventory)
  3. {
  4. if (agentStatus.getState() == ONLINE) {
  5. Preconditions.checkNotNull(serviceInventory, "serviceInventory is null");
  6. URI internalUri = agentStatus.getInternalUri();
  7. try {
  8. Request request = RequestBuilder.preparePut()
  9. .setUri(uriBuilderFrom(internalUri).appendPath("/v1/serviceInventory").build())
  10. .setHeader(CONTENT_TYPE, APPLICATION_JSON)
  11. .setBodyGenerator(jsonBodyGenerator(serviceDescriptorsCodec, new ServiceDescriptorsRepresentation(environment, serviceInventory)))
  12. .build();
  13. httpClient.execute(request, createStatusResponseHandler());
  14. if (serviceInventoryUp.compareAndSet(false, true)) {
  15. log.info("Service inventory put succeeded for agent at %s", internalUri);
  16. }
  17. }
  18. catch (Exception e) {
  19. if (serviceInventoryUp.compareAndSet(true, false) && !log.isDebugEnabled()) {
  20. log.error("Unable to post service inventory to agent at %s: %s", internalUri, e.getMessage());
  21. }
  22. log.debug(e, "Unable to post service inventory to agent at %s: %s", internalUri, e.getMessage());
  23. }
  24. }
  25. }

代码示例来源:origin: com.proofpoint.galaxy/galaxy-agent

  1. Preconditions.checkState(!terminated, "Slot has been terminated");
  2. log.info("Becoming %s with %s", installation.getAssignment().getBinary(), installation.getAssignment().getConfig());

代码示例来源:origin: com.proofpoint.platform/cassandra-experimental

  1. String socketName = String.format("%s:%s", listenAddr.getHostAddress(), listenPort);
  2. try {
  3. log.info("Binding thrift service to " + socketName);
  4. tServerSocket = new TCustomServerSocket(
  5. new InetSocketAddress(listenAddr, listenPort),
  6. TTransportFactory inTransportFactory = new TFramedTransport.Factory(tFramedTransportSize);
  7. TTransportFactory outTransportFactory = new TFramedTransport.Factory(tFramedTransportSize);
  8. log.info("Using TFastFramedTransport with a max frame size of %s bytes", tFramedTransportSize);

代码示例来源:origin: com.proofpoint.platform/cassandra-experimental

  1. private void setup()
  2. throws IOException, ConfigurationException
  3. log.info("Heap size: %s/%s", Runtime.getRuntime().totalMemory(), Runtime.getRuntime().maxMemory());
  4. CLibrary.tryMlockall();

代码示例来源:origin: com.proofpoint.platform/http-server

  1. adminExternalUri = buildUri("http", nodeInfo.getExternalAddress(), adminUri.getPort());
  2. Logger.get("Bootstrap").info("Admin service on %s", adminUri);

相关文章