Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for Debugf (0.06 sec)

  1. IndexUpdater.java

    if (logger.isDebugEnabled()) { L329: logger.debug("Indexing {}", accessResult.getUrl()); L330: } L331: accessResult.setStatus(Constants.DONE_STATUS); L332: accessResultList.add(accessResult); L333: L334: if (accessResult.getHttpStatusCode() != 200) { L335: // invalid page L336: if (logger.isDebugEnabled()) { L337: logger.debug("Skipped. The response code is {}.", accessResult.getHttpStatusCode());...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      24.2K bytes
  2. RoleQueryHelper.java

    cipher.decryptoText(rolesStr); L239: } catch (final Exception e) { L240: if (logger.isDebugEnabled()) { L241: logger.debug("Failed to decrypt {}", rolesStr, e); L242: } L243: return; L244: } L245: } L246: L247: if (logger.isDebugEnabled()) { L248: logger.debug("role: original: {}, decrypto: {}", value, rolesStr); L249: } L250: L251: if (valueSeparator.length() > 0) { L252: final...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Jul 25 01:48:41 UTC 2024
      11.5K bytes
  3. LabelTypeHelper.java

    ath).matches()) { L289: if (logger.isDebugEnabled()) { L290: logger.debug("Path {} matches the exclude path expression {} on {} of label.", path, excludedPaths, value); L291: } L292: return false; L293: } L294: if (logger.isDebugEnabled()) { L295: logger.debug("Path {} does not match the exclude path expression {} on {} of label.", path, excludedPaths, value); L296: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      11.7K bytes
  4. IndexingHelper.java

    ComponentUtil.getFessConfig(); L54: final SystemHelper systemHelper = ComponentUtil.getSystemHelper(); L55: final long execTime = systemHelper.getCurrentTimeAsLong(); L56: if (logger.isDebugEnabled()) { L57: logger.debug("Sending {} documents to a server.", docList.size()); L58: } L59: try { L60: if (fessConfig.isThumbnailCrawlerEnabled()) { L61: final ThumbnailManager thumbnailManager = ComponentUtil.getThumbnailManager(); L62:...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      16.8K bytes
  5. ApiAdminSearchlistAction.java

    } catch (final InvalidQueryException e) { L89: if (logger.isDebugEnabled()) { L90: logger.debug("Invalid query: {}", body.q, e); L91: } L92: throwValidationErrorApi(e.getMessageCode()); L93: } catch (final ResultOffsetExceededException e) { L94: if (logger.isDebugEnabled()) { L95: logger.debug("Invalid offset: {}", body.offset, e); L96: } L97: throwValidationErrorApi(messages -> messages.ad...
    github.com/codelibs/fess/src/main/java/org/code...
    Wed Jul 24 09:03:45 UTC 2024
      10.2K bytes
  6. SearchEngineApiManager.java

    out); L160: } catch (final ClientAbortException e) { L161: logger.debug("Client aborts this request.", e); L162: } L163: } catch (final Exception e) { L164: if (!(e.getCause() instanceof ClientAbortException)) { L165: throw new WebApiException(HttpServletResponse.SC_INTERNAL_SERVER_ERROR, e); L166: } L167: logger.debug("Client aborts this request.", e); L168: } L169: } L170: L171: protected void...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Aug 15 08:29:24 UTC 2024
      11.3K bytes
  7. FessFunctions.java

    if (Files.isRegularFile(path)) { L89: return Files.getLastModifiedTime(path).toMillis(); L90: } L91: } catch (final Exception e) { L92: logger.debug("Failed to access {}", key, e); L93: } L94: return 0L; L95: } L96: }); L97: L98: protected FessFunctions() { L99: // nothing L100: } L101: L102: public static Boolean labelExists(final...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      16.9K bytes
  8. AzureAdAuthenticator.java

    if (logger.isDebugEnabled()) { L192: logger.debug("process authentication: url: {}, params: {}", urlBuf, params); L193: } L194: L195: // validate that state in response equals to state in request L196: final StateData stateData = validateState(request.getSession(), params.containsKey(STATE) ? params.get(STATE).get(0) : null); L197: if (logger.isDebugEnabled()) { L198: logger.debug("load {}", stateData); L199: } L200: L201: final...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      28.2K bytes
  9. SuggestCreator.java

    ManagementFactory.getRuntimeMXBean().getInputArguments().stream().forEach(s -> logger.debug("Parameter: {}", s)); L99: System.getProperties().entrySet().stream().forEach(e -> logger.debug("Property: {}={}", e.getKey(), e.getValue())); L100: System.getenv().entrySet().forEach(e -> logger.debug("Env: {}={}", e.getKey(), e.getValue())); L101: logger.debug("Option: {}", options); L102: } catch (final Exception e) { L103: //...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      10K bytes
  10. RankFusionProcessor.java

    StreamUtil.split(value, ",") L100: .get(stream -> stream.map(String::trim).filter(StringUtil::isNotBlank).collect(Collectors.toUnmodifiableSet())); L101: } L102: if (logger.isDebugEnabled()) { L103: logger.debug("availableSearcherNameSet={}", availableSearcherNameSet); L104: } L105: } L106: L107: @Override L108: @PreDestroy L109: public void close() throws Exception { L110: if (executorService != null) { L111: try { L112:...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      18.3K bytes
Back to top