jodd.log.Logger.isDebugEnabled()方法的使用及代码示例

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

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

Logger.isDebugEnabled介绍

[英]Returns true if DEBUG level is enabled.
[中]如果启用调试级别,则返回true

代码示例

代码示例来源:origin: oblac/jodd

  1. /**
  2. * Logs a message at DEBUG level.
  3. */
  4. default void debug(final Supplier<String> messageSupplier) {
  5. if (isDebugEnabled()) {
  6. debug(messageSupplier.get());
  7. }
  8. }

代码示例来源:origin: oblac/jodd

  1. /**
  2. * Saves Locale to HTTP session.
  3. */
  4. public static void setSessionLocale(final HttpSession session, final String localeCode) {
  5. if (log.isDebugEnabled()) {
  6. log.debug("Locale stored to session: " + localeCode);
  7. }
  8. Locale locale = Locale.forLanguageTag(localeCode);
  9. session.setAttribute(SESSION_LOCALE_ATTR, locale);
  10. }

代码示例来源:origin: oblac/jodd

  1. /**
  2. * Sets bundle name for provided servlet request.
  3. */
  4. public static void setRequestBundleName(final ServletRequest request, final String bundleName) {
  5. if (log.isDebugEnabled()) {
  6. log.debug("Bundle name for this request: " + bundleName);
  7. }
  8. request.setAttribute(REQUEST_BUNDLE_NAME_ATTR, bundleName);
  9. }

代码示例来源:origin: oblac/jodd

  1. /**
  2. * Returns <code>true</code> if target exists.
  3. */
  4. protected boolean targetExists(final ActionRequest actionRequest, final String target) {
  5. if (log.isDebugEnabled()) {
  6. log.debug("target check: " + target);
  7. }
  8. final ServletContext servletContext = actionRequest.getHttpServletRequest().getServletContext();
  9. try {
  10. return servletContext.getResource(target) != null;
  11. } catch (MalformedURLException ignore) {
  12. return false;
  13. }
  14. }

代码示例来源:origin: oblac/jodd

  1. /**
  2. * Locates gzipped version of bundle file. If gzip file
  3. * does not exist, it will be created.
  4. */
  5. public File lookupGzipBundleFile(final File file) throws IOException {
  6. String path = file.getPath() + ZipUtil.GZIP_EXT;
  7. File gzipFile = new File(path);
  8. if (!gzipFile.exists()) {
  9. if (log.isDebugEnabled()) {
  10. log.debug("gzip bundle to " + path);
  11. }
  12. ZipUtil.gzip(file);
  13. }
  14. return gzipFile;
  15. }

代码示例来源:origin: oblac/jodd

  1. /**
  2. * Creates new Petite container using {@link PetiteContainer provided configuration}.
  3. */
  4. public PetiteContainer(final PetiteConfig config) {
  5. super(config);
  6. scopedProxyManager = new ScopedProxyManager();
  7. if (log.isDebugEnabled()) {
  8. log.debug("Petite container created");
  9. }
  10. }

代码示例来源:origin: oblac/jodd

  1. @Override
  2. protected boolean processActionPath(final HttpServletRequest servletRequest, final HttpServletResponse servletResponse, final String actionPath) throws IOException {
  3. String bundlePath = '/' + bundlesManager.getStaplerPath() + '/';
  4. if (!actionPath.startsWith(bundlePath)) {
  5. return false;
  6. }
  7. String bundleId = actionPath.substring(bundlePath.length());
  8. File file = bundlesManager.lookupBundleFile(bundleId);
  9. if (log.isDebugEnabled()) {
  10. log.debug("bundle: " + bundleId);
  11. }
  12. int ndx = bundleId.lastIndexOf('.');
  13. String extension = bundleId.substring(ndx + 1);
  14. String contentType = MimeTypes.getMimeType(extension);
  15. servletResponse.setContentType(contentType);
  16. if (useGzip && ServletUtil.isGzipSupported(servletRequest)) {
  17. file = bundlesManager.lookupGzipBundleFile(file);
  18. servletResponse.setHeader("Content-Encoding", "gzip");
  19. }
  20. if (!file.exists()) {
  21. throw new IOException("bundle not found: " + bundleId);
  22. }
  23. servletResponse.setHeader("Content-Length", String.valueOf(file.length()));
  24. servletResponse.setHeader("Last-Modified", TimeUtil.formatHttpDate(file.lastModified()));
  25. if (cacheMaxAge > 0) {
  26. servletResponse.setHeader("Cache-Control", "max-age=" + cacheMaxAge);
  27. }
  28. sendBundleFile(servletResponse, file);
  29. return true;
  30. }

代码示例来源:origin: oblac/jodd

  1. public DbCallResult executeCall() {
  2. start = System.currentTimeMillis();
  3. init();
  4. if (log.isDebugEnabled()) {
  5. log.debug("Calling statement: " + getQueryString());
  6. }
  7. try {
  8. callableStatement.execute();
  9. } catch (SQLException sex) {
  10. DbUtil.close(callableStatement);
  11. throw new DbSqlException(this, "Query execution failed", sex);
  12. }
  13. elapsed = System.currentTimeMillis() - start;
  14. if (log.isDebugEnabled()) {
  15. log.debug("execution time: " + elapsed + "ms");
  16. }
  17. return new DbCallResult(query, callableStatement);
  18. }

代码示例来源:origin: oblac/jodd

  1. /**
  2. * Creates new transaction. Should be invoked by {@link jodd.jtx.JtxTransactionManager}.
  3. * If transaction is set as <code>active</code>, it will be actually created, meaning
  4. * that it is the first transaction on this connection i.e. in this session.
  5. * If transaction is not <code>active</code>, transaction object will be created,
  6. * but the real transaction not, and it is expected that one is already created before.
  7. *
  8. * @param txManager jtx manager
  9. * @param mode transaction mode
  10. * @param scope transaction live scope within the other transaction requests are ignored
  11. * @param active if <code>true</code> it is an active transaction, otherwise it's not
  12. */
  13. public JtxTransaction(final JtxTransactionManager txManager, final JtxTransactionMode mode, final Object scope, final boolean active) {
  14. this.txManager = txManager;
  15. this.mode = mode;
  16. this.scope = scope;
  17. this.resources = new HashSet<>();
  18. this.deadline = mode.getTransactionTimeout() == DEFAULT_TIMEOUT ?
  19. DEFAULT_TIMEOUT :
  20. System.currentTimeMillis() + (mode.getTransactionTimeout() * 1000L);
  21. this.status = active ? STATUS_ACTIVE : STATUS_NO_TRANSACTION;
  22. this.startAsActive = active;
  23. txManager.associateTransaction(this);
  24. if (log.isDebugEnabled()) {
  25. log.debug("New JTX {status:" + this.status + ", mode:" + this.mode + '}');
  26. }
  27. }

代码示例来源:origin: oblac/jodd

  1. /**
  2. * Registers new action result instance. If action result of the same class is already
  3. * registered, registration will be skipped. If result for the same result type or
  4. * same target class exist, it will be replaced! However, default Jodd results will
  5. * <i>never</i> replace other results. After the registration, results are initialized.
  6. */
  7. protected ActionResult register(final ActionResult result) {
  8. Class<? extends ActionResult> actionResultClass = result.getClass();
  9. // check existing
  10. ActionResult existingResult = allResults.get(actionResultClass);
  11. if (existingResult != null) {
  12. if (log.isDebugEnabled()) {
  13. log.debug("ActionResult already registered: " + actionResultClass);
  14. }
  15. return existingResult;
  16. }
  17. allResults.put(actionResultClass, result);
  18. // + init
  19. initializeResult(result);
  20. return result;
  21. }

代码示例来源:origin: oblac/jodd

  1. if (log.isDebugEnabled()) {
  2. log.debug("Executing prepared count: " + getQueryString());
  3. if (log.isDebugEnabled()) {
  4. log.debug("execution time: " + elapsed + "ms");

代码示例来源:origin: oblac/jodd

  1. if (log.isDebugEnabled()) {
  2. log.debug("Executing statement: " + getQueryString());
  3. if (log.isDebugEnabled()) {
  4. log.debug("execution time: " + elapsed + "ms");

代码示例来源:origin: oblac/jodd

  1. /**
  2. * Returns byte array of created class.
  3. */
  4. public byte[] create() {
  5. process();
  6. byte[] result = toByteArray();
  7. dumpClassInDebugFolder(result);
  8. if ((!proxetta.isForced()) && (!isProxyApplied())) {
  9. if (log.isDebugEnabled()) {
  10. log.debug("Proxy not applied: " + StringUtil.toSafeString(targetClassName));
  11. }
  12. return null;
  13. }
  14. if (log.isDebugEnabled()) {
  15. log.debug("Proxy created " + StringUtil.toSafeString(targetClassName));
  16. }
  17. return result;
  18. }

代码示例来源:origin: oblac/jodd

  1. /**
  2. * Registers just type and entity names. Enough for most usages.
  3. */
  4. public <E> DbEntityDescriptor<E> registerType(final Class<E> type) {
  5. DbEntityDescriptor<E> ded = createDbEntityDescriptor(type);
  6. DbEntityDescriptor<E> existing = descriptorsMap.put(type, ded);
  7. if (log.isDebugEnabled()) {
  8. log.debug("Register " + type.getName() + " as " + ded.getTableName());
  9. }
  10. if (existing != null) {
  11. if (ded.getType() == type) {
  12. return ded;
  13. }
  14. throw new DbOomException("Type already registered: " + existing.getType());
  15. }
  16. existing = entityNamesMap.put(ded.getEntityName(), ded);
  17. if (existing != null) {
  18. throw new DbOomException("Name '" + ded.getEntityName() + "' already mapped to an entity: " + existing.getType());
  19. }
  20. return ded;
  21. }

代码示例来源:origin: oblac/jodd

  1. /**
  2. * Reads the target and creates destination class.
  3. */
  4. protected void process() {
  5. if (targetInputStream == null) {
  6. throw new ProxettaException("Target missing: " + targetClassName);
  7. }
  8. // create class reader
  9. final ClassReader classReader;
  10. try {
  11. classReader = new ClassReader(targetInputStream);
  12. } catch (IOException ioex) {
  13. throw new ProxettaException("Error reading class input stream", ioex);
  14. }
  15. // reads information
  16. final TargetClassInfoReader targetClassInfoReader = new TargetClassInfoReader(proxetta.getClassLoader());
  17. classReader.accept(targetClassInfoReader, 0);
  18. this.destClassWriter = new ClassWriter(ClassWriter.COMPUTE_MAXS | ClassWriter.COMPUTE_FRAMES);
  19. // create proxy
  20. if (log.isDebugEnabled()) {
  21. log.debug("processing: " + classReader.getClassName());
  22. }
  23. WorkData wd = process(classReader, targetClassInfoReader);
  24. // store important data
  25. proxyApplied = wd.proxyApplied;
  26. proxyClassName = wd.thisReference.replace('/', '.');
  27. }

代码示例来源:origin: oblac/jodd

  1. if (log.isDebugEnabled()) {
  2. if (doCommit) {
  3. log.debug("Commit JTX");

代码示例来源:origin: oblac/jodd

  1. /**
  2. * Requests transaction with specified {@link JtxTransactionMode mode}.
  3. * Depending on propagation behavior, it will return either <b>existing</b> or <b>new</b> transaction.
  4. * Only one transaction can be opened over one scope.
  5. * The exception may be thrown indicating propagation mismatch.
  6. */
  7. public JtxTransaction requestTransaction(final JtxTransactionMode mode, final Object scope) {
  8. if (log.isDebugEnabled()) {
  9. log.debug("Requesting TX " + mode.toString());
  10. }
  11. JtxTransaction currentTx = getTransaction();
  12. if (!isNewTxScope(currentTx, scope)) {
  13. return currentTx;
  14. }
  15. switch (mode.getPropagationBehavior()) {
  16. case PROPAGATION_REQUIRED: return propRequired(currentTx, mode, scope);
  17. case PROPAGATION_SUPPORTS: return propSupports(currentTx, mode, scope);
  18. case PROPAGATION_MANDATORY: return propMandatory(currentTx, mode, scope);
  19. case PROPAGATION_REQUIRES_NEW: return propRequiresNew(currentTx, mode, scope);
  20. case PROPAGATION_NOT_SUPPORTED: return propNotSupported(currentTx, mode, scope);
  21. case PROPAGATION_NEVER: return propNever(currentTx, mode, scope);
  22. }
  23. throw new JtxException("Invalid TX propagation value: " + mode.getPropagationBehavior().value());
  24. }

代码示例来源:origin: oblac/jodd

  1. @Test
  2. void testIsLevelEnabled() {
  3. // Loggers does not provide any API to enable levels.
  4. // Instead we need to use log/level(trace/debug etc) API to log information into corresponding level
  5. assertFalse(logger.isTraceEnabled());
  6. assertFalse(logger.isDebugEnabled());
  7. assertFalse(logger.isInfoEnabled());
  8. assertFalse(logger.isWarnEnabled());
  9. assertFalse(logger.isErrorEnabled());
  10. }

代码示例来源:origin: oblac/jodd

  1. if (log.isDebugEnabled()) {
  2. log.debug("LagartoDom tree created in " + rootNode.getElapsedTime() + " ms");

代码示例来源:origin: oblac/jodd

  1. @Override
  2. @Test
  3. void testIsLevelEnabled() {
  4. //when
  5. initializeLogFactoryAndLogger(Logger.Level.DEBUG);
  6. //then
  7. assertTrue(logger.isDebugEnabled());
  8. //when
  9. initializeLogFactoryAndLogger(Logger.Level.ERROR);
  10. //then
  11. assertTrue(logger.isErrorEnabled());
  12. //when
  13. initializeLogFactoryAndLogger(Logger.Level.INFO);
  14. //then
  15. assertTrue(logger.isInfoEnabled());
  16. //when
  17. initializeLogFactoryAndLogger(Logger.Level.TRACE);
  18. //then
  19. assertTrue(logger.isTraceEnabled());
  20. //when
  21. initializeLogFactoryAndLogger(Logger.Level.WARN);
  22. //then
  23. assertTrue(logger.isWarnEnabled());
  24. }

相关文章