- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 50 for Debugf (0.06 sec)
-
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 -
FessCrawlerThread.java
(logger.isDebugEnabled()) { L149: logger.debug("Accessing document: {}, status: {}", url, httpStatusCode); L150: } L151: if (httpStatusCode == 404) { L152: storeChildUrlsToQueue(urlQueue, getAnchorSet(document.get(fessConfig.getIndexFieldAnchor()))); L153: if (!indexingHelper.deleteDocument(searchEngineClient, id)) { L154: logger.debug("Failed to delete 404 document: {}", url); L155: ...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 14.6K 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 -
AdminBackupAction.java
bw.flush(); L235: } catch (IOException e) { L236: throw new IORuntimeException(e); L237: } L238: }).execute()) { L239: if (logger.isDebugEnabled()) { L240: logger.debug("Bulk Response:\n{}", response.getContentAsString()); L241: } L242: systemHelper.reloadConfiguration(resetJobs.get()); L243: } catch (final Exception e) { L244: logger.warn("Failed to process bulk file: {}",...github.com/codelibs/fess/src/main/java/org/code...Sat Oct 12 01:54:46 UTC 2024 28.5K bytes -
ViewHelper.java
textFragmentPrefixLength; L161: L162: protected int textFragmentSuffixLength; L163: L164: protected int textFragmentSize; L165: L166: @PostConstruct L167: public void init() { L168: if (logger.isDebugEnabled()) { L169: logger.debug("Initialize {}", this.getClass().getSimpleName()); L170: } L171: final FessConfig fessConfig = ComponentUtil.getFessConfig(); L172: escapedHighlightPre = LaFunctions.h(originalHighlightTagPre); L173: escapedHighlightPost...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 40.2K bytes -
FileListIndexUpdateCallbackImpl.java
try { L317: if (logger.isDebugEnabled()) { L318: logger.debug("Shutting down thread executor."); L319: } L320: executor.shutdown(); L321: executor.awaitTermination(executorTerminationTimeout, TimeUnit.SECONDS); L322: } catch (final InterruptedException e) { L323: if (logger.isDebugEnabled()) { L324: logger.debug("Failed to interrupt executor.", e); L325: } L326: } finally { L327: ...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 16.8K bytes -
DefaultSearcher.java
tFragmentsByHighlight(highlightFields.values().toArray(n -> new HighlightField[n]))); L166: } L167: } L168: } catch (final Exception e) { L169: if (logger.isDebugEnabled()) { L170: logger.debug("Could not create a highlighting value: {}", docMap, e); L171: } L172: } L173: L174: if (Constants.TEXT_FRAGMENT_TYPE_QUERY.equals(fessConfig.getQueryHighlightTextFragmentType())) { L175: docMap.put(Constants.TEXT_FRAGMENTS,...github.com/codelibs/fess/src/main/java/org/code...Mon Jul 22 06:56:21 UTC 2024 10.2K bytes -
FessMultipartRequestHandler.java
multi-part so logging here L230: protected void showFieldLoggingTitle() { L231: if (logger.isDebugEnabled()) { L232: logger.debug("[Multipart Request Parameter]"); L233: } L234: } L235: L236: protected void showFormFieldParameter(final DiskFileItem item) { L237: if (logger.isDebugEnabled()) { L238: logger.debug("[param] {}={}", item.getFieldName(), item.getString()); L239: } L240: } L241: L242: protected void showFileFieldParameter(final...github.com/codelibs/fess/src/main/java/org/code...Wed Oct 23 13:27:21 UTC 2024 18.6K bytes -
FessEnv.java
L101: /** L102: * Get the value for the key 'framework.debug'. <br> L103: * The value is, e.g. false <br> L104: * comment: Does it enable the Framework internal debug? (true only when emergency) L105: * @return The value of found property. (NotNull: if not found, exception but basically no way) L106: */ L107: String getFrameworkDebug(); L108: L109: /** L110: * Is the property for the key 'framework.debug' true? <br> L111: * The value is, e.g. false <br> L112: ...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 9.9K bytes -
QueryFieldConfig.java
Set<String> notAnalyzedFieldSet; L69: L70: protected List<Pair<String, Float>> additionalDefaultList = new ArrayList<>(); L71: L72: @PostConstruct L73: public void init() { L74: if (logger.isDebugEnabled()) { L75: logger.debug("Initialize {}", this.getClass().getSimpleName()); L76: } L77: final FessConfig fessConfig = ComponentUtil.getFessConfig(); L78: if (responseFields == null) { L79: responseFields = fessConfig.getQueryAdditionalResponseFields(//...github.com/codelibs/fess/src/main/java/org/code...Mon Jul 22 04:30:56 UTC 2024 16K bytes