org.webpieces.util.logging.Logger.isDebugEnabled()方法的使用及代码示例

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

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

Logger.isDebugEnabled介绍

[英]Is the logger instance enabled for the DEBUG level?
[中]是否为调试级别启用了记录器实例?

代码示例

代码示例来源:origin: org.webpieces/core-util

  1. /**
  2. * Log an exception (throwable) at the DEBUG level with an
  3. * accompanying message.
  4. *
  5. * @param msg the message accompanying the exception
  6. * @param t the exception (throwable) to log
  7. */
  8. public void debug(Supplier<String> msg, Throwable t) {
  9. if(isDebugEnabled())
  10. logger.debug(msg.get(), t);
  11. }

代码示例来源:origin: org.webpieces/core-util

  1. /**
  2. * Log a message at the DEBUG level.
  3. *
  4. * Usage: log.debug(()->"my lazy log statement")
  5. *
  6. * @param msg the message string to be logged
  7. */
  8. public void debug(Supplier<String> msg) {
  9. if(isDebugEnabled())
  10. logger.debug(msg.get());
  11. }

代码示例来源:origin: org.webpieces/http-router

  1. public void printAllRoutes(Route route) {
  2. if(!log.isDebugEnabled())
  3. return;
  4. else if(route.getRouteType() != RouteType.NOT_FOUND)
  5. return;
  6. L1AllRouting routingInfo = routerBuilder.getRouterInfo();
  7. //TODO: domain specific routes
  8. //Collection<L2DomainRoutes> domains = routingInfo.getSpecificDomains();
  9. L3PrefixedRouting mainRoutes = routingInfo.getMainRoutes().getRoutesForDomain();
  10. mainRoutes.printRoutes(route.isHttpsRoute(), "");
  11. }
  12. }

代码示例来源:origin: org.webpieces/core-statemachine

  1. /**
  2. * @param smState
  3. * @param evt
  4. */
  5. public void fireEvent(StateMachineState smState, Object evt)
  6. {
  7. TransitionImpl transition = evtToTransition.get(evt);
  8. if(transition == null) {
  9. log.debug(() -> smState+"No Transition: "+getName()+" -> <no transition found>, event="+evt);
  10. if(noTransitionListener != null)
  11. noTransitionListener.noTransitionFromEvent(smState.getCurrentState(), evt);
  12. return;
  13. }
  14. State nextState = transition.getEndState();
  15. if(log.isDebugEnabled())
  16. log.debug(() -> smState+"Transition: "+getName()+" -> "+nextState+", event="+evt);
  17. try {
  18. smState.setCurrentState(nextState);
  19. } catch(RuntimeException e) {
  20. log.warn(smState+"Transition FAILED: "+getName()+" -> "+nextState+", event="+evt);
  21. throw e;
  22. }
  23. }

代码示例来源:origin: org.webpieces/runtimecompile

  1. resolveClass(applicationClass.javaClass);
  2. if(log.isDebugEnabled()) {
  3. long time = System.currentTimeMillis() - start;
  4. log.trace(()->time+"ms to load class "+name+" from cache");

相关文章