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

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

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

Logger.debug介绍

[英]Logs a debugging message.
[中]记录调试消息。

代码示例

代码示例来源:origin: org.freemarker/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. synchronized (STATIC_LOCK) {
  5. xpathSupportClass = c;
  6. }
  7. LOG.debug("Using Sun's internal Xalan classes for XPath support");
  8. }

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

  1. /**
  2. * Convenience method. Tells the system to use Xalan for XPath queries.
  3. * @throws Exception if the Xalan XPath classes are not present.
  4. */
  5. static public void useXalanXPathSupport() throws Exception {
  6. Class.forName("org.apache.xpath.XPath");
  7. Class c = Class.forName("freemarker.ext.dom.XalanXPathSupport");
  8. synchronized (STATIC_LOCK) {
  9. xpathSupportClass = c;
  10. }
  11. LOG.debug("Using Xalan classes for XPath support");
  12. }

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

  1. /**
  2. * Convenience method. Tells the system to use Jaxen for XPath queries.
  3. * @throws Exception if the Jaxen classes are not present.
  4. */
  5. static public void useJaxenXPathSupport() throws Exception {
  6. Class.forName("org.jaxen.dom.DOMXPath");
  7. Class c = Class.forName("freemarker.ext.dom.JaxenXPathSupport");
  8. jaxenXPathSupport = (XPathSupport) c.newInstance();
  9. synchronized (STATIC_LOCK) {
  10. xpathSupportClass = c;
  11. }
  12. LOG.debug("Using Jaxen classes for XPath support");
  13. }

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

  1. private void logNoSuchKey(String key, Map<?, ?> keyMap) {
  2. LOG.debug("Key " + StringUtil.jQuoteNoXSS(key) + " was not found on instance of " +
  3. object.getClass().getName() + ". Introspection information for " +
  4. "the class is: " + keyMap);
  5. }

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

  1. private void addTldLocationsFromWebXml() throws SAXException, IOException {
  2. LOG.debug("Looking for TLD locations in servletContext:/WEB-INF/web.xml");
  3. WebXmlParser webXmlParser = new WebXmlParser();
  4. InputStream in = servletContext.getResourceAsStream("/WEB-INF/web.xml");
  5. if (in == null) {
  6. LOG.debug("No web.xml was found in servlet context");
  7. return;
  8. }
  9. try {
  10. parseXml(in, servletContext.getResource("/WEB-INF/web.xml").toExternalForm(), webXmlParser);
  11. } finally {
  12. in.close();
  13. }
  14. }

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

  1. private void addTldLocationsFromWebInfTlds()
  2. throws IOException, SAXException {
  3. LOG.debug("Looking for TLD locations in servletContext:/WEB-INF/**/*.tld");
  4. addTldLocationsFromServletContextResourceTlds("/WEB-INF");
  5. }

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

  1. LOG.debug("Failed to use Xalan XPath support.", e);
  2. } catch (IllegalAccessError e) {
  3. LOG.debug("Failed to use Xalan internal XPath support.", e);
  4. useSunInternalXPathSupport();
  5. } catch (Exception e) {
  6. LOG.debug("Failed to use Sun internal XPath support.", e);
  7. } catch (IllegalAccessError e) {
  8. LOG.debug("Failed to use Sun internal XPath support. "
  9. + "Tip: On Java 9+, you may need Xalan or Jaxen+Saxpath.", e);
  10. LOG.debug("Failed to use Jaxen XPath support.", e);
  11. } catch (IllegalAccessError e) {
  12. LOG.debug("Failed to use Jaxen XPath support.", e);

代码示例来源: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. if (fileName.equalsIgnoreCase(listingEntry)) {
  2. if (LOG.isDebugEnabled()) {
  3. LOG.debug("Emulating file-not-found because of letter case differences to the "
  4. + "real file, for: " + sourcePath);

代码示例来源: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 (jarFile != null) {
  2. if (LOG.isDebugEnabled()) {
  3. LOG.debug("Scanning for " + META_INF_ABS_PATH + "*.tld-s in JarFile: servletContext:"
  4. + jarResourcePath);
  5. LOG.debug("Scanning for " + META_INF_ABS_PATH
  6. + "*.tld-s in ZipInputStream (slow): servletContext:" + jarResourcePath);

代码示例来源: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. LOG.debug("Looking for TLD locations in TLD-s specified in cfg.classpathTlds");

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

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

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

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

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

  1. LOG.debug(debugName + " was removed from the cache, if it was there");

相关文章