Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 30 for Debugf (0.05 sec)

  1. AdminMaintenanceAction.java

    try { L259: zos.putNextEntry(entry); L260: final long len = Files.copy(filePath, zos); L261: if (logger.isDebugEnabled()) { L262: logger.debug("{}: {}", filePath.getFileName(), len); L263: } L264: } catch (final IOException e) { L265: logger.warn("Failed to access {}", filePath, e); L266: } L267: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      14K bytes
  2. PluginHelper.java

    actualVersion, L147: pluginUrl + version + "/" + name + "-" + actualVersion + ".jar")); L148: } else if (logger.isDebugEnabled()) { L149: logger.debug("Snapshot name is not found: {}/{}", name, version); L150: } L151: } else { L152: list.add(new Artifact(name, version, pluginUrl + version + "/" + name + "-" +...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Oct 24 01:47:10 UTC 2024
      17.8K bytes
  3. TermQueryCommand.java

    @Override L52: public QueryBuilder execute(final QueryContext context, final Query query, final float boost) { L53: if (query instanceof final TermQuery termQuery) { L54: if (logger.isDebugEnabled()) { L55: logger.debug("{}:{}", query, boost); L56: } L57: return convertTermQuery(context, termQuery, boost); L58: } L59: throw new InvalidQueryException(messages -> messages.addErrorsInvalidQueryUnknown(UserMessages.GLOBAL_PROPERTY_KEY),...
    github.com/codelibs/fess/src/main/java/org/code...
    Sat Oct 12 01:54:15 UTC 2024
      10K bytes
  4. OpenIdConnectAuthenticator.java

    L152: final String jwtSigniture = new String(decodeBase64(jwt[2]), Constants.UTF_8_CHARSET); L153: L154: if (logger.isDebugEnabled()) { L155: logger.debug("jwtHeader: {}", jwtHeader); L156: logger.debug("jwtClaim: {}", jwtClaim); L157: logger.debug("jwtSigniture: {}", jwtSigniture); L158: } L159: L160: // TODO validate signiture L161: L162: final Map<String, Object> attributes = new HashMap<>(); L163:...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      12.3K bytes
  5. Crawler.java

    ManagementFactory.getRuntimeMXBean().getInputArguments().stream().forEach(s -> logger.debug("Parameter: {}", s)); L205: System.getProperties().entrySet().stream().forEach(e -> logger.debug("Property: {}={}", e.getKey(), e.getValue())); L206: System.getenv().entrySet().forEach(e -> logger.debug("Env: {}={}", e.getKey(), e.getValue())); L207: logger.debug("Option: {}", options); L208: } catch (final Exception e) { L209: //...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      24K bytes
  6. DataConfig.java

    deprecated. Please use time_to_live."); L409: } L410: try { L411: return Integer.parseInt(value); L412: } catch (final NumberFormatException e) { L413: if (logger.isDebugEnabled()) { L414: logger.debug("Invalid format: {}", value, e); L415: } L416: } L417: return null; L418: } L419: L420: @Override L421: public String toString() { L422: return "DataConfig [available=" + available + ", boost=" + boost + ",...
    github.com/codelibs/fess/src/main/java/org/code...
    Sat Oct 12 01:54:15 UTC 2024
      18.5K bytes
  7. AdminUpgradeAction.java

    L1321: } L1322: } else if (logger.isDebugEnabled()) { L1323: if (!client.existsIndex(oldIndex)) { L1324: logger.debug("{} does not exist.", oldIndex); L1325: } L1326: if (!client.existsIndex(index)) { L1327: logger.debug("{} does not exist.", index); L1328: } L1329: } L1330: } L1331: for (final String index : crawlerIndices) { L1332: if (c...
    github.com/codelibs/fess/src/main/java/org/code...
    Sat Oct 12 01:54:46 UTC 2024
      54K bytes
  8. WebFsIndexHelper.java

    (logger.isInfoEnabled()) { L213: logger.info("Excluded URL from failures: {}", urlValue); L214: } L215: }); L216: } L217: L218: if (logger.isDebugEnabled()) { L219: logger.debug("Crawling {}", urlsStr); L220: } L221: L222: crawler.setBackground(true); L223: crawler.setThreadPriority(crawlerPriority); L224: L225: crawlerList.add(crawler); L226: crawlerStatusList.add(Constants.READY);...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      22.6K bytes
  9. AbstractFessFileTransformer.java

    L103: if (fessConfig.isCrawlerDocumentFileIgnoreEmptyContent() && StringUtil.isBlank(content)) { L104: return null; L105: } L106: if (getLogger().isDebugEnabled()) { L107: getLogger().debug("ExtractData: {}", extractData); L108: } L109: // meta L110: extractData.getKeySet().stream().filter(k -> extractData.getValues(k) != null).forEach(key -> { L111: final String[] values = extractData.getValues(key);...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      23.6K bytes
  10. pom.xml

    <groupId>org.codelibs.opensearch</groupId> L1052: <artifactId>opensearch-runner</artifactId> L1053: <version>${opensearch.runner.version}</version> L1054: <exclusions> L1055: <exclusion> L1056: <groupId>org.ow2.asm</groupId> L1057: <artifactId>asm-debug-all</artifactId> L1058: </exclusion> L1059: <exclusion> L1060: <groupId>commons-logging</groupId> L1061: <artifactId>commons-logging</artifactId> L1062: </exclusion> L1063: <exclusion> L1064: <groupId>org.codehaus.groovy</groupId>...
    github.com/codelibs/fess/pom.xml
    Sat Oct 26 02:16:03 UTC 2024
      49.1K bytes
Back to top