- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 40 for Debugf (0.06 sec)
-
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 -
ThumbnailManager.java
add(final ThumbnailGenerator generator) { L328: if (generator.isAvailable()) { L329: if (logger.isDebugEnabled()) { L330: logger.debug("{} is available.", generator.getName()); L331: } L332: generatorList.add(generator); L333: } else if (logger.isDebugEnabled()) { L334: logger.debug("{} is not available.", generator.getName()); L335: } L336: } L337: L338: public long purge(final long expiry) { L339: if (!baseDir.exists())...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 21.5K bytes -
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 -
SpnegoAuthenticator.java
spnegoResponse); L117: if (logger.isDebugEnabled()) { L118: logger.debug("principal: {}", principal); L119: } L120: } catch (final Exception e) { L121: final String msg = "Failed to process Authorization Header: " + request.getHeader(Constants.AUTHZ_HEADER); L122: if (logger.isDebugEnabled()) { L123: logger.debug(msg); L124: } L125: throw new SsoLoginException(e.getMessage()...github.com/codelibs/fess/src/main/java/org/code...Sat Oct 12 01:54:46 UTC 2024 11.2K bytes -
CrawlerLogHelper.java
(final ContainerNotAvailableException e) { L114: if (logger.isDebugEnabled()) { L115: logger.debug("container was destroyed."); L116: } L117: return; L118: } catch (final Exception e) { L119: if (!ComponentUtil.available()) { L120: if (logger.isDebugEnabled()) { L121: logger.debug("container was destroyed."); L122: } L123: return; L124: } L125: logger.warn("Failed...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 7.3K bytes -
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 -
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 -
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 -
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 -
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