Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 123 for Debugf (0.05 sec)

  1. 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
  2. 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
  3. 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
  4. 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
  5. 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
  6. 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
  7. ThumbnailGenerator.java

    ManagementFactory.getRuntimeMXBean().getInputArguments().stream().forEach(s -> logger.debug("Parameter: {}", s)); L107: System.getProperties().entrySet().stream().forEach(e -> logger.debug("Property: {}={}", e.getKey(), e.getValue())); L108: System.getenv().entrySet().forEach(e -> logger.debug("Env: {}={}", e.getKey(), e.getValue())); L109: logger.debug("Option: {}", options); L110: } catch (final Exception e) { L111: //...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      8.2K bytes
  8. 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
  9. SamlAuthenticator.java

    @PostConstruct L72: public void init() { L73: if (logger.isDebugEnabled()) { L74: logger.debug("Initialize {}", this.getClass().getSimpleName()); L75: } L76: ComponentUtil.getSsoManager().register(this); L77: L78: defaultSettings = new HashMap<>(); L79: defaultSettings.put("onelogin.saml2.strict", "true"); L80: defaultSettings.put("onelogin.saml2.debug", "false"); L81: defaultSettings.put("onelogin.saml2.sp.entityid", "http://localhost:8080/sso/metadata");...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      15.2K bytes
  10. 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
Back to top