Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 123 for Debugf (0.05 sec)

  1. SearchApiManager.java

    OptionalThing.empty()); L257: response.flushBuffer(); L258: if (logger.isDebugEnabled()) { L259: logger.debug("Loaded {} docs", count); L260: } L261: } catch (final InvalidQueryException | ResultOffsetExceededException e) { L262: if (logger.isDebugEnabled()) { L263: logger.debug("Failed to process a scroll request.", e); L264: } L265: writeJsonResponse(HttpServletResponse.SC_BAD_REQUEST, e); L266:...
    github.com/codelibs/fess/src/main/java/org/code...
    Sat Oct 12 01:54:46 UTC 2024
      50.3K bytes
  2. PathMappingHelper.java

    ) { L71: cachedPathMappingList.forEach(e -> { L72: logger.debug("path mapping: {}: {} -> {}", e.getId(), e.getRegex(), e.getReplacement()); L73: }); L74: } L75: return cachedPathMappingList.size(); L76: } catch (final ComponentNotFoundException e) { L77: if (logger.isDebugEnabled()) { L78: logger.debug("Failed to load path mappings.", e); L79: } L80: cachedPathMappingList...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      7.6K bytes
  3. ScriptExecutorJob.java

    throw new ScheduledJobException("No jobExecutor: " + scriptType); L79: } L80: L81: if (!jobManager.findJobByUniqueOf(LaJobUnique.of(id)).isPresent()) { L82: if (logger.isDebugEnabled()) { L83: logger.debug("Job {} is running.", id); L84: } L85: return; L86: } L87: L88: TimeoutTask task = null; L89: try { L90: if (scheduledJob.isLoggingEnabled()) { L91: jobHelper.store(jobLog); L92:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      5.3K bytes
  4. CommandGenerator.java

    @Override L83: public boolean generate(final String thumbnailId, final File outputFile) { L84: if (logger.isDebugEnabled()) { L85: logger.debug("Generate Thumbnail: {}", thumbnailId); L86: } L87: L88: if (outputFile.exists()) { L89: if (logger.isDebugEnabled()) { L90: logger.debug("The thumbnail file exists: {}", outputFile.getAbsolutePath()); L91: } L92: return true; L93: } L94: L95: final File parentFile...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      9.6K bytes
  5. 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
  6. ProtocolHelper.java

    ::isNotBlank).map(s -> s.trim() + ":").toArray(n -> new String[n])); L58: L59: loadProtocols("org.codelibs.fess.net.protocol"); L60: L61: if (logger.isDebugEnabled()) { L62: logger.debug("web protocols: {}", Arrays.toString(webProtocols)); L63: logger.debug("file protocols: {}", Arrays.toString(fileProtocols)); L64: } L65: } L66: L67: protected void loadProtocols(final String basePackage) { L68: final List<String> subPackages = new ArrayList<>();...
    github.com/codelibs/fess/src/main/java/org/code...
    Wed Jun 19 01:34:15 UTC 2024
      7.4K bytes
  7. SambaHelper.java

    public void init() { L54: if (logger.isDebugEnabled()) { L55: logger.debug("Initialize {}", this.getClass().getSimpleName()); L56: } L57: fessConfig = ComponentUtil.getFessConfig(); L58: } L59: L60: public String getAccountId(final SID sid) { L61: final int type = sid.getType(); L62: if (logger.isDebugEnabled()) { L63: try { L64: logger.debug("Processing SID: {} {} {}", type, sid, sid.toDisplayString()); L65: } catch...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Jun 27 10:58:21 UTC 2024
      3.3K bytes
  8. OsddHelper.java

    File osddFile; L49: L50: @PostConstruct L51: public void init() { L52: if (logger.isDebugEnabled()) { L53: logger.debug("Initialize {}", this.getClass().getSimpleName()); L54: } L55: osddFile = getOsddFile(); L56: } L57: L58: protected File getOsddFile() { L59: if (!isOsddLinkEnabled()) { L60: logger.debug("OSDD is disabled."); L61: return null; L62: } L63: if (StringUtil.isBlank(osddPath)) { L64: logger.info("OSDD...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      3.7K bytes
  9. 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
  10. NotificationHelper.java

    (CurlResponse response = Curl.post(url).header("Content-Type", "application/json").body(body).execute()) { L52: if (response.getHttpStatusCode() == 200) { L53: if (logger.isDebugEnabled()) { L54: logger.debug("Sent {} to {}.", body, url); L55: } L56: } else { L57: logger.warn("Failed to send {} to {}. HTTP Status is {}. {}", body, url, response.getHttpStatusCode(), L58: res...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      5.1K bytes
Back to top