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

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

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

Logger.warn介绍

[英]Logs a message at WARN level.

Usage example:

  1. logger.warn("something bad happened when connecting to %s:%d", host, port);

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

  1. logger.warn("something bad happened when connecting to %s:%d", host, port);

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

代码示例

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

  1. /**
  2. * Logs a message at WARN level.
  3. * <p>
  4. * Usage example:
  5. * <pre>
  6. * logger.warn("something bad happened when connecting to %s:%d", host, port);
  7. * </pre>
  8. * If the format string is invalid or the arguments are insufficient, an error will be logged and execution
  9. * will continue.
  10. *
  11. * @param format a format string compatible with String.format()
  12. * @param args arguments for the format string
  13. */
  14. public void warn(String format, Object... args)
  15. {
  16. warn(null, format, args);
  17. }

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

  1. @Override
  2. public void onWarning(String message)
  3. {
  4. if (loggingInitialized.get()) {
  5. log.warn(message);
  6. }
  7. else {
  8. warnings.add(message);
  9. }
  10. }

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

  1. public void warn(WARNING_ID id, String message, Object... data)
  2. {
  3. String msg;
  4. try {
  5. msg = String.format(message, data);
  6. }
  7. catch (IllegalFormatException e) {
  8. msg = message + " " + Arrays.toString(data);
  9. }
  10. Logger.get("jnr-posix").warn(msg);
  11. }

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

  1. public static void addShutdownHookToWaitFor(Thread shutdownHook)
  2. {
  3. LogManager logManager = LogManager.getLogManager();
  4. if (logManager instanceof ShutdownWaitingLogManager) {
  5. ((ShutdownWaitingLogManager) logManager).addWaitForShutdownHook(shutdownHook);
  6. } else {
  7. log.warn("LogManager is not a ShutdownWaitingLogManager, so shutdown hooks might not be able to log. Please run java with -Djava.util.logging.manager=%s",
  8. ShutdownWaitingLogManager.class.getTypeName());
  9. }
  10. }

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

  1. private static void recoverTempFiles(String logPath)
  2. {
  3. // Logback has a tendency to leave around temp files if it is interrupted.
  4. // These .tmp files are log files that are about to be compressed.
  5. // This method recovers them so that they aren't orphaned.
  6. File logPathFile = new File(logPath).getParentFile();
  7. File[] tempFiles = logPathFile.listFiles((dir, name) -> name.endsWith(TEMP_FILE_EXTENSION));
  8. if (tempFiles == null) {
  9. return;
  10. }
  11. for (File tempFile : tempFiles) {
  12. String newName = tempFile.getName().substring(0, tempFile.getName().length() - TEMP_FILE_EXTENSION.length());
  13. File newFile = new File(tempFile.getParent(), newName + LOG_FILE_EXTENSION);
  14. if (!tempFile.renameTo(newFile)) {
  15. log.warn("Could not rename temp file [%s] to [%s]", tempFile, newFile);
  16. }
  17. }
  18. }

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

  1. log.warn("Invalid slot id [" + slotIdString + "]: attempting to delete galaxy-slot-id.txt file and recreating a new one");
  2. slotIdFile.delete();

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

  1. try {
  2. exceptionCache.get(exception.getClass(), () -> {
  3. log.warn(exception, "Exception querying %s",
  4. request.getUri().resolve("/"));
  5. isLogged.set(true);
  6. log.warn("Exception querying %s: %s",
  7. request.getUri().resolve("/"),
  8. exception);

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

  1. log.warn("Unable to delete temp directory: %s", tempDir.getAbsolutePath());

代码示例来源:origin: com.proofpoint.platform/reporting-client

  1. public void report(long systemTimeMillis, Table<String, Map<String, String>, Object> collectedData)
  2. {
  3. Request request = preparePost()
  4. .setUri(UPLOAD_URI)
  5. .setHeader("Content-Type", "application/gzip")
  6. .setBodySource(new CompressBodySource(systemTimeMillis, collectedData))
  7. .build();
  8. try {
  9. StringResponse response = httpClient.execute(request, createStringResponseHandler());
  10. if (response.getStatusCode() != 204) {
  11. logger.warn("Failed to report stats: %s %s %s", response.getStatusCode(), response.getStatusMessage(), response.getBody());
  12. }
  13. }
  14. catch (RuntimeException e) {
  15. logger.warn(e, "Exception when trying to report stats");
  16. }
  17. }

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

  1. @Override
  2. public T handle(Request request, Response response)
  3. throws RetryException
  4. {
  5. String failureCategory = response.getStatusCode() + " status code";
  6. if (RETRYABLE_STATUS_CODES.contains(response.getStatusCode())) {
  7. String retryHeader = response.getHeader("X-Proofpoint-Retry");
  8. log.warn("%d response querying %s",
  9. response.getStatusCode(), request.getUri().resolve("/"));
  10. if (!("no".equalsIgnoreCase(retryHeader)) && bodySourceRetryable(request) && retryBudget.canRetry()) {
  11. throw new RetryException(failureCategory);
  12. }
  13. Object result;
  14. try {
  15. result = innerHandler.handle(request, response);
  16. }
  17. catch (Exception e) {
  18. throw new InnerHandlerException(e, failureCategory);
  19. }
  20. throw new FailureStatusException(result, failureCategory);
  21. }
  22. try {
  23. return innerHandler.handle(request, response);
  24. }
  25. catch (Exception e) {
  26. throw new InnerHandlerException(e, failureCategory);
  27. }
  28. }

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

  1. log.warn("Unable to start GCInspector (currently only supported on the Sun JVM)");

相关文章