- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 123 for Debugf (0.04 sec)
-
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 -
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 -
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 -
LanguageHelper.java
protected String[] supportedLanguages; L40: L41: protected LanguageDetector detector; L42: L43: protected int maxTextLength; L44: L45: @PostConstruct L46: public void init() { L47: if (logger.isDebugEnabled()) { L48: logger.debug("Initialize {}", this.getClass().getSimpleName()); L49: } L50: final FessConfig fessConfig = ComponentUtil.getFessConfig(); L51: langFields = fessConfig.getIndexerLanguageFieldsAsArray(); L52: supportedLanguages = fessC...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 5.5K bytes -
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 -
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 -
HtmlTagBasedGenerator.java
task = new Tuple3<>(getName(), thumbnailId, path); L53: if (logger.isDebugEnabled()) { L54: logger.debug("Create thumbnail task: {}", task); L55: } L56: return task; L57: } L58: L59: @Override L60: public boolean generate(final String thumbnailId, final File outputFile) { L61: if (logger.isDebugEnabled()) { L62: logger.debug("Generate Thumbnail: {}", thumbnailId); L63: } L64: L65: if (outputFile.exists()) { L66: if...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 7.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 -
IndexUpdateCallbackImpl.java
maxDocumentRequestSize; L53: L54: protected int maxDocumentCacheSize; L55: L56: private IngestFactory ingestFactory = null; L57: L58: @PostConstruct L59: public void init() { L60: if (logger.isDebugEnabled()) { L61: logger.debug("Initialize {}", this.getClass().getSimpleName()); L62: } L63: maxDocumentRequestSize = Long.parseLong(ComponentUtil.getFessConfig().getIndexerDataMaxDocumentRequestSize()); L64: maxDocumentCacheSize = ComponentUtil.getFessCon...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 7.9K 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