org.eclipse.jetty.util.log.Logger.warn()方法的使用及代码示例

x33g5p2x  于2022-01-23 转载在 其他  
字(6.1k)|赞(0)|评价(0)|浏览(289)

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

Logger.warn介绍

[英]Logs the given message at warn level, with Throwable information.
[中]

代码示例

代码示例来源:origin: org.eclipse.jetty/jetty-webapp

  1. : _locations.isIncludedAndNotExcluded(location);
  2. if (LOG.isDebugEnabled())
  3. LOG.debug("match {} from {} byName={} byLocation={} in {}",clazz,location,byName,byLocation,this);
  4. LOG.warn(e);

代码示例来源:origin: org.eclipse.jetty/jetty-webapp

  1. LOG.warn("Can't generate resourceBase as part of webapp tmp dir name: " + e);
  2. LOG.debug(e);

代码示例来源:origin: org.eclipse.jetty/jetty-webapp

  1. LOG.warn(new Throwable()); // TODO throw ISE?
  2. LOG.warn(new Throwable()); // TODO throw ISE?
  3. if (s.startsWith("t"))
  4. LOG.warn("Deprecated boolean load-on-startup. Please use integer");
  5. order = 1;
  6. LOG.warn("Cannot parse load-on-startup " + s + ". Please use integer");
  7. LOG.ignore(e);
  8. LOG.warn(new Throwable()); // TODO throw ISE?
  9. if (roleName != null && roleName.length() > 0 && roleLink != null && roleLink.length() > 0)
  10. LOG.warn(new Throwable()); // TODO throw ISE?
  11. LOG.warn("Ignored invalid security-role-ref element: " + "servlet-name=" + holder.getName() + ", " + securityRef);
  12. LOG.warn(new Throwable()); // TODO throw ISE?
  13. LOG.warn(new Throwable()); // TODO throw ISE?
  14. LOG.warn(new Throwable()); // TODO throw ISE?
  15. LOG.warn(new Throwable()); // TODO throw ISE?

代码示例来源:origin: org.eclipse.jetty/jetty-util

  1. private void setFailed(Throwable th)
  2. {
  3. _state = __FAILED;
  4. if (LOG.isDebugEnabled())
  5. LOG.warn(FAILED+" " + this+": "+th,th);
  6. for (Listener listener : _listeners)
  7. listener.lifeCycleFailure(this,th);
  8. }

代码示例来源:origin: org.eclipse.jetty/jetty-util

  1. JLOG.warn(msg,cause);
  2. JLOG.warn(msg);
  3. JLOG.debug(msg,cause);
  4. JLOG.debug(msg);
  5. JLOG.ignore(cause);
  6. return;

代码示例来源:origin: org.eclipse.jetty/jetty-util

  1. private void verifyIndirectTypes(Class<?> superClazz, Class<?> clazz, String typeName)
  2. {
  3. try
  4. {
  5. // Report on super class deprecation too
  6. while (superClazz != null && superClazz != Object.class)
  7. {
  8. Deprecated supDepr = superClazz.getAnnotation(Deprecated.class);
  9. if (supDepr != null)
  10. {
  11. LOG.warn("Using indirect @Deprecated {} {} - (seen from {})",typeName,superClazz.getName(),clazz);
  12. }
  13. superClazz = superClazz.getSuperclass();
  14. }
  15. }
  16. catch (Throwable t)
  17. {
  18. LOG.ignore(t);
  19. }
  20. }

代码示例来源:origin: org.eclipse.jetty/jetty-webapp

  1. if (LOG.isDebugEnabled()) LOG.debug("{} in mapping {} from defaults descriptor is overridden by ",ps,sm,servletName);
  2. LOG.warn("Duplicate mapping from {} to {}", p, servletName);
  3. if (LOG.isDebugEnabled()) LOG.debug("Removed empty mapping {}",sm);
  4. listItor.remove();
  5. if (LOG.isDebugEnabled()) LOG.debug("Removed path {} from mapping {}", p,sm);

代码示例来源:origin: org.eclipse.jetty/jetty-util

  1. public String toReplacedString()
  2. {
  3. if (!isUtf8SequenceComplete())
  4. {
  5. _codep=0;
  6. _state = UTF8_ACCEPT;
  7. try
  8. {
  9. _appendable.append(REPLACEMENT);
  10. }
  11. catch(IOException e)
  12. {
  13. throw new RuntimeException(e);
  14. }
  15. Throwable th= new NotUtf8Exception("incomplete UTF8 sequence");
  16. LOG.warn(th.toString());
  17. LOG.debug(th);
  18. }
  19. return _appendable.toString();
  20. }

代码示例来源:origin: org.eclipse.jetty/jetty-util

  1. if (LOG.isDebugEnabled())
  2. LOG.debug("ALIAS abs={} can={}",abs,can);
  3. LOG.warn("bad alias for {}: {}",file,e.toString());
  4. LOG.debug(e);
  5. try
  6. LOG.ignore(e2);
  7. throw new RuntimeException(e);

代码示例来源:origin: org.eclipse.jetty/jetty-util

  1. if (LOG.isDebugEnabled())
  2. LOG.warn("Couldn't stop {}{}", unstopped, dmp.toString());
  3. LOG.warn("{} Couldn't stop {}",this,unstopped);

代码示例来源:origin: org.eclipse.jetty.aggregate/jetty-all-server

  1. @Override
  2. protected void onException(Throwable ex)
  3. {
  4. if (ex instanceof EofException)
  5. {
  6. _log.ignore(ex);
  7. return;
  8. }
  9. _log.warn(ex.toString());
  10. _log.debug(ex);
  11. if (!response.isCommitted())
  12. {
  13. response.setStatus(HttpServletResponse.SC_INTERNAL_SERVER_ERROR);
  14. }
  15. }

代码示例来源:origin: org.eclipse.jetty/jetty-util

  1. /**
  2. * @see org.eclipse.jetty.util.preventers.AbstractLeakPreventer#prevent(java.lang.ClassLoader)
  3. */
  4. @Override
  5. public void prevent(ClassLoader loader)
  6. {
  7. try
  8. {
  9. Class<?> clazz = Class.forName("sun.misc.GC");
  10. Method requestLatency = clazz.getMethod("requestLatency", new Class[] {long.class});
  11. requestLatency.invoke(null, Long.valueOf(Long.MAX_VALUE-1));
  12. }
  13. catch (ClassNotFoundException e)
  14. {
  15. LOG.ignore(e);
  16. }
  17. catch (Exception e)
  18. {
  19. LOG.warn(e);
  20. }
  21. }

代码示例来源:origin: org.eclipse.jetty/jetty-webapp

  1. if(LOG.isDebugEnabled())
  2. LOG.debug("addJar - {}", fn);
  3. String fnlc=fn.getName().toLowerCase(Locale.ENGLISH);
  4. LOG.warn(Log.EXCEPTION,ex);

代码示例来源:origin: org.eclipse.jetty/jetty-util

  1. LOG.warn(e.toString());
  2. LOG.debug(Log.EXCEPTION,e);
  3. return new BadResource(url,e.toString());

代码示例来源:origin: org.eclipse.jetty/jetty-util

  1. if (LOG.isDebugEnabled())
  2. LOG.debug("run {}", job);
  3. runJob(job);
  4. if (LOG.isDebugEnabled())
  5. LOG.debug("ran {}", job);
  6. if (Thread.interrupted())
  7. LOG.ignore(e);
  8. LOG.warn(e);
  9. LOG.warn("Unexpected thread death: {} in {}", this, QueuedThreadPool.this);

代码示例来源:origin: com.ovea.tajin.server/tajin-server-jetty9

  1. @Override
  2. public int getSessions()
  3. {
  4. int sessions=super.getSessions();
  5. if (LOG.isDebugEnabled())
  6. {
  7. if (_sessions.size()!=sessions)
  8. LOG.warn("sessions: "+_sessions.size()+"!="+sessions);
  9. }
  10. return sessions;
  11. }

代码示例来源:origin: org.eclipse.jetty/jetty-util

  1. private void execute(Runnable task)
  2. {
  3. try
  4. {
  5. _executor.execute(task);
  6. }
  7. catch (RejectedExecutionException e)
  8. {
  9. if (isRunning())
  10. LOG.warn(e);
  11. else
  12. LOG.ignore(e);
  13. if (task instanceof Closeable)
  14. {
  15. try
  16. {
  17. ((Closeable)task).close();
  18. }
  19. catch (Throwable e2)
  20. {
  21. LOG.ignore(e2);
  22. }
  23. }
  24. }
  25. }

代码示例来源:origin: org.eclipse.jetty/jetty-webapp

  1. LOG.warn(new Throwable()); // TODO throw ISE?
  2. if (LOG.isDebugEnabled())
  3. LOG.debug("ContextParam: " + name + "=" + value);

代码示例来源:origin: org.eclipse.jetty/jetty-util

  1. LOG.warn("Retrying list:"+e);
  2. LOG.debug(e);
  3. close();
  4. list = listEntries();

代码示例来源:origin: org.eclipse.jetty/jetty-util

  1. if (LOG.isDebugEnabled())
  2. LOG.debug("Starting java.nio file watching with {}",watchService);
  3. if (LOG.isDebugEnabled())
  4. LOG.debug("Waiting for poll({})", wait_time);
  5. key = wait_time<0?watch.take():wait_time>0?watch.poll(wait_time,updateQuietTimeUnit):watch.poll();
  6. LOG.warn(e);
  7. LOG.ignore(e);

相关文章