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

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

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

Logger.isDebugEnabled介绍

暂无

代码示例

代码示例来源:origin: org.gatein.management/gatein-management-core

  1. final boolean debug = log.isDebugEnabled();
  2. if (debug) log.debug("Registering operation " + operationName + " for path " + resource.getPath());

代码示例来源:origin: org.exoplatform.portal/exo.portal.component.web.server

  1. private boolean isLimited(UploadResource upResource, double contentLength)
  2. {
  3. // by default, use the limit set in the service
  4. UploadLimit limit = defaultUploadLimitMB_;
  5. // if the limit is set in the request (specific for this upload) then use
  6. // this value instead of the default one
  7. if (uploadLimits.containsKey(upResource.getUploadId()))
  8. {
  9. limit = uploadLimits.get(upResource.getUploadId());
  10. }
  11. double estimatedSize = contentLength / limit.division;
  12. if (limit.getLimit() > 0 && estimatedSize > limit.getLimit())
  13. { // a limit set to 0 means unlimited
  14. if (log.isDebugEnabled())
  15. {
  16. log.debug("Upload cancelled because file bigger than size limit : " + estimatedSize + " " + limit.unit + " > " + limit.getLimit()
  17. + " " + limit.unit);
  18. }
  19. return true;
  20. }
  21. return false;
  22. }

代码示例来源:origin: org.gatein.management/gatein-management-core

  1. @Override
  2. public ComponentRegistration registerManagedComponent(Class<?> component)
  3. {
  4. boolean debug = log.isDebugEnabled();
  5. if (debug) log.debug("Processing managed annotations for class " + component);
  6. Managed managed = component.getAnnotation(Managed.class);
  7. if (managed == null) throw new RuntimeException(Managed.class + " annotation not present on " + component);
  8. String componentName = managed.value();
  9. if ("".equals(componentName)) throw new RuntimeException(Managed.class + " annotation must have a value (path) for component class " + component);
  10. if (debug) log.debug("Registering managed component " + componentName);
  11. ComponentRegistration registration = registerManagedComponent(componentName);
  12. registration.registerManagedResource(description(managed.description()));
  13. // Register resources & operations
  14. AnnotatedResource annotatedResource = new AnnotatedResource(component);
  15. annotatedResource.register(rootResource);
  16. return registration;
  17. }
  18. private ManagedDescription description(final String description)

代码示例来源:origin: org.gatein.management/gatein-management-core

  1. static AbstractManagedResource registerOrGetResource(AbstractManagedResource resource, Managed managed)
  2. {
  3. PathAddress address = PathAddress.pathAddress(managed.value());
  4. for (Iterator<String> iterator = address.iterator(); iterator.hasNext();)
  5. {
  6. String path = iterator.next();
  7. String description = "";
  8. if (iterator.hasNext())
  9. {
  10. description = managed.description();
  11. }
  12. AbstractManagedResource child = (AbstractManagedResource) resource.getSubResource(path);
  13. if (child == null)
  14. {
  15. if (log.isDebugEnabled()) log.debug("Registering managed resource " + path);
  16. child = (AbstractManagedResource) resource.registerSubResource(path, description(description));
  17. }
  18. resource = child;
  19. }
  20. return resource;
  21. }

代码示例来源:origin: org.gatein.management/gatein-management-core

  1. @Override
  2. public void execute(OperationContext operationContext, ResultHandler resultHandler) throws ResourceNotFoundException, OperationException
  3. if (log.isDebugEnabled())

代码示例来源:origin: org.gatein.management/gatein-management-core

  1. private static Object[] getParameters(OperationContext operationContext, Method method, String methodName, Class<?> managedClass)
  2. boolean debug = log.isDebugEnabled();
  3. String operationName = operationContext.getOperationName();
  4. Annotation[][] parameterAnnotations = method.getParameterAnnotations();

代码示例来源:origin: org.gatein.management/gatein-management-rest

  1. if (log.isDebugEnabled()) // Don't want to log exceptions for wrong url's all the time.
  2. if (log.isDebugEnabled()) {
  3. log.error("Bad request for address " + address + " and operation " + operationName, e);

代码示例来源:origin: org.gatein.management/gatein-management-core

  1. String operationName = request.getOperationName();
  2. boolean debug = log.isDebugEnabled();
  3. if (debug)

相关文章