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

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

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

Logger.isDebugEnabled介绍

[英]Returns true if this logger will log debug messages.
[中]如果此记录器将记录调试消息,则返回true。

代码示例

代码示例来源:origin: org.freemarker/freemarker

  1. private static Navigator getNavigator(String navType) {
  2. try {
  3. return (Navigator) ClassUtil.forName("freemarker.ext.xml._" +
  4. navType + "Navigator").newInstance();
  5. } catch (Throwable t) {
  6. if (LOG.isDebugEnabled()) {
  7. LOG.debug("Could not load navigator for " + navType, t);
  8. }
  9. return null;
  10. }
  11. }

代码示例来源:origin: org.freemarker/freemarker

  1. private static Class getClass(String className) {
  2. try {
  3. return ClassUtil.forName(className);
  4. } catch (Exception e) {
  5. if (LOG.isDebugEnabled()) {
  6. LOG.debug("Couldn't load class " + className, e);
  7. }
  8. return null;
  9. }
  10. }

代码示例来源:origin: org.freemarker/freemarker

  1. private void addTldLocationsFromWebInfPerLibJarMetaInfTlds() throws IOException, SAXException {
  2. if (LOG.isDebugEnabled()) {
  3. LOG.debug("Looking for TLD locations in servletContext:/WEB-INF/lib/*.{jar,zip}" + META_INF_ABS_PATH
  4. + "*.tld");
  5. }
  6. Set libEntPaths = servletContext.getResourcePaths("/WEB-INF/lib");
  7. if (libEntPaths != null) {
  8. for (Iterator iter = libEntPaths.iterator(); iter.hasNext(); ) {
  9. final String libEntryPath = (String) iter.next();
  10. if (isJarPath(libEntryPath)) {
  11. addTldLocationsFromServletContextJar(libEntryPath);
  12. }
  13. }
  14. }
  15. }

代码示例来源:origin: org.freemarker/freemarker

  1. private void addTldLocation(TldLocation tldLocation, String taglibUri) {
  2. if (tldLocations.containsKey(taglibUri)) {
  3. if (LOG.isDebugEnabled()) {
  4. LOG.debug("Ignored duplicate mapping of taglib URI " + StringUtil.jQuoteNoXSS(taglibUri)
  5. + " to TLD location " + StringUtil.jQuoteNoXSS(tldLocation));
  6. }
  7. } else {
  8. tldLocations.put(taglibUri, tldLocation);
  9. if (LOG.isDebugEnabled()) {
  10. LOG.debug("Mapped taglib URI " + StringUtil.jQuoteNoXSS(taglibUri)
  11. + " to TLD location " + StringUtil.jQuoteNoXSS(tldLocation));
  12. }
  13. }
  14. }

代码示例来源:origin: org.freemarker/freemarker

  1. /**
  2. * @param tldLocation
  3. * The physical location of the TLD file
  4. * @param taglibUri
  5. * The URI used in templates to refer to the taglib (like {@code <%@ taglib uri="..." ... %>} in JSP).
  6. */
  7. private TemplateHashModel loadTaglib(TldLocation tldLocation, String taglibUri) throws IOException, SAXException {
  8. if (LOG.isDebugEnabled()) {
  9. LOG.debug("Loading taglib for URI " + StringUtil.jQuoteNoXSS(taglibUri)
  10. + " from TLD location " + StringUtil.jQuoteNoXSS(tldLocation));
  11. }
  12. final Taglib taglib = new Taglib(servletContext, tldLocation, objectWrapper);
  13. taglibs.put(taglibUri, taglib);
  14. tldLocations.remove(taglibUri);
  15. return taglib;
  16. }

代码示例来源:origin: org.freemarker/freemarker

  1. final String listingEntry = listing[i];
  2. if (fileName.equalsIgnoreCase(listingEntry)) {
  3. if (LOG.isDebugEnabled()) {
  4. LOG.debug("Emulating file-not-found because of letter case differences to the "
  5. + "real file, for: " + sourcePath);

代码示例来源:origin: org.freemarker/freemarker

  1. private void addTldLocationsFromFileDirectory(final File dir) throws IOException, SAXException {
  2. if (dir.isDirectory()) {
  3. if (LOG.isDebugEnabled()) {
  4. LOG.debug("Scanning for *.tld-s in File directory: " + StringUtil.jQuoteNoXSS(dir));
  5. }
  6. File[] tldFiles = dir.listFiles(new FilenameFilter() {
  7. public boolean accept(File urlAsFile, String name) {
  8. return isTldFileNameIgnoreCase(name);
  9. }
  10. });
  11. if (tldFiles == null) {
  12. throw new IOException("Can't list this directory for some reason: " + dir);
  13. }
  14. for (int i = 0; i < tldFiles.length; i++) {
  15. final File file = tldFiles[i];
  16. addTldLocationFromTld(new FileTldLocation(file));
  17. }
  18. } else {
  19. LOG.warn("Skipped scanning for *.tld for non-existent directory: " + StringUtil.jQuoteNoXSS(dir));
  20. }
  21. }

代码示例来源:origin: org.freemarker/freemarker

  1. private Object findTemplateSource(String path) throws IOException {
  2. final Object result = templateLoader.findTemplateSource(path);
  3. if (LOG.isDebugEnabled()) {
  4. LOG.debug("TemplateLoader.findTemplateSource(" + StringUtil.jQuote(path) + "): "
  5. + (result == null ? "Not found" : "Found"));
  6. }
  7. return modifyForConfIcI(result);
  8. }

代码示例来源:origin: org.freemarker/freemarker

  1. if (LOG.isDebugEnabled()) {
  2. LOG.debug("Scanning for " + META_INF_ABS_PATH + "*.tld-s in JarFile: servletContext:"
  3. + jarResourcePath);
  4. if (LOG.isDebugEnabled()) {
  5. LOG.debug("Scanning for " + META_INF_ABS_PATH
  6. + "*.tld-s in ZipInputStream (slow): servletContext:" + jarResourcePath);

代码示例来源:origin: org.freemarker/freemarker

  1. if (ATTEMPT_LOGGER.isDebugEnabled()) {
  2. ATTEMPT_LOGGER.debug("Error in attempt block " +
  3. attemptBlock.getStartLocationQuoted(), thrownException);

代码示例来源:origin: org.freemarker/freemarker

  1. } else if (miTldSource instanceof ClasspathMetaInfTldSource) {
  2. ClasspathMetaInfTldSource cpMiTldLocation = (ClasspathMetaInfTldSource) miTldSource;
  3. if (LOG.isDebugEnabled()) {
  4. LOG.debug("Looking for TLD-s in "
  5. + "classpathRoots[" + cpMiTldLocation.getRootContainerPattern() + "]"
  6. addTldLocationsFromJarDirectoryEntryURL(url);
  7. } else {
  8. if (LOG.isDebugEnabled()) {
  9. LOG.debug("Can't list entries under this URL; TLD-s won't be discovered here: "
  10. + urlWithEF.getExternalForm());

代码示例来源:origin: org.freemarker/freemarker

  1. if (LOG.isDebugEnabled()) {
  2. LOG.debug("Scanning for " + META_INF_ABS_PATH + "**/*.tld-s in random access mode: "
  3. + jarBaseEntryUrl);
  4. if (LOG.isDebugEnabled()) {
  5. LOG.debug("Scanning for " + META_INF_ABS_PATH + "**/*.tld-s in stream mode (slow): "
  6. + rawJarContentUrlEF);

代码示例来源:origin: org.freemarker/freemarker

  1. boolean debug = LOG.isDebugEnabled();
  2. String debugName = debug
  3. ? buildDebugName(name, locale, customLookupCondition, encoding, parse)

代码示例来源:origin: org.freemarker/freemarker

  1. if (LOG.isDebugEnabled()) {
  2. LOG.debug("Requested template " + StringUtil.jQuoteNoXSS(templatePath) + ".");
  3. "Template not found for name " + StringUtil.jQuoteNoXSS(templatePath) + ".", e);
  4. } else {
  5. if (LOG.isDebugEnabled()) {
  6. LOG.debug("Responding HTTP 404 \"Not found\" for missing template "
  7. + StringUtil.jQuoteNoXSS(templatePath) + ".", e);

代码示例来源:origin: org.freemarker/freemarker

  1. if (LOG.isDebugEnabled()) {
  2. LOG.debug("Using object wrapper: " + wrapper);

代码示例来源:origin: org.freemarker/freemarker

  1. if (LOG.isDebugEnabled()) {
  2. LOG.debug("Initial encoding \"" + initialEncoding + "\" was incorrect, re-reading with \""
  3. + actualEncoding + "\". Template: " + sourceName);

代码示例来源:origin: org.freemarker/freemarker

  1. if (wrapper.isStrict()) {
  2. throw new InvalidPropertyException("No such bean property: " + key);
  3. } else if (LOG.isDebugEnabled()) {
  4. logNoSuchKey(key, classInfo);

代码示例来源:origin: org.freemarker/freemarker

  1. final String normalizedTaglibUri;
  2. try {
  3. if (LOG.isDebugEnabled()) {
  4. LOG.debug("Locating TLD for taglib URI " + StringUtil.jQuoteNoXSS(taglibUri) + ".");

代码示例来源:origin: org.freemarker/freemarker

  1. final String encoding, final boolean parseAsFTL)
  2. throws IOException {
  3. final boolean debug = LOG.isDebugEnabled();
  4. final String debugName = debug
  5. ? buildDebugName(name, locale, customLookupCondition, encoding, parseAsFTL)

代码示例来源:origin: org.freemarker/com.springsource.freemarker

  1. static public void useSunInternalXPathSupport() throws Exception {
  2. Class.forName("com.sun.org.apache.xpath.internal.XPath");
  3. Class c = Class.forName("freemarker.ext.dom.SunInternalXalanXPathSupport");
  4. if (logger.isDebugEnabled()) {
  5. logger.debug("Using Sun's internal Xalan classes for XPath support");
  6. }
  7. xpathSupportClass = c;
  8. }

相关文章