- Sort Score
- Result 10 results
- Languages All
Results 161 - 170 of 1,094 for logger (0.03 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/FaultTolerantClient.java
* <ul> * <li>Retry up to 5 times</li> * <li>Wait 500ms between retries</li> * </ul> * */ public class FaultTolerantClient implements CrawlerClient { /** Logger instance for this class */ private static final Logger logger = LogManager.getLogger(FaultTolerantClient.class); /** The underlying crawler client */ protected CrawlerClient client; /** Maximum number of retry attempts */
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 7.8K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/profiles/DefaultProfileManager.java
import org.codehaus.plexus.component.repository.exception.ComponentLookupException; import org.codehaus.plexus.logging.Logger; /** * DefaultProfileManager */ @Deprecated public class DefaultProfileManager implements ProfileManager { @Inject private Logger logger; @Inject private ProfileSelector profileSelector; private List<String> activatedIds = new ArrayList<>();
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 6.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/GenerateThumbnailJob.java
* This job executes the ThumbnailGenerator process as a separate JVM process * to create thumbnail images for supported document types. */ public class GenerateThumbnailJob extends ExecJob { /** Logger for this class. */ static final Logger logger = LogManager.getLogger(GenerateThumbnailJob.class); /** Number of threads to use for thumbnail generation. */ protected int numOfThreads = 1;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 11.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java
} } else { logger.warn("{} is not available.", generatorName); } } else if (logger.isDebugEnabled()) { logger.debug("No image file exists: {}", noImageFile.getAbsolutePath()); } } catch (final Exception e) { logger.warn("Failed to create thumbnail for {}", entity, e); } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java
} catch (final InvalidQueryException e) { if (logger.isDebugEnabled()) { logger.debug("Invalid query: {}", form.q, e); } throwValidationError(e.getMessageCode(), this::asListHtml); } catch (final ResultOffsetExceededException e) { if (logger.isDebugEnabled()) { logger.debug("Invalid offset: {}", form.offset, e); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 23.1K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/rank/fusion/DefaultSearcher.java
* This searcher handles query execution, response processing, and document highlighting. */ public class DefaultSearcher extends RankFusionSearcher { /** Logger for this class. */ private static final Logger logger = LogManager.getLogger(DefaultSearcher.class); /** * Creates a new instance of DefaultSearcher. * This constructor initializes the default rank fusion searcher for performing
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 12.6K bytes - Viewed (0) -
cmd/config-versions.go
// Storage class configuration StorageClass storageclass.Config `json:"storageclass"` // Notification queue configuration. Notify notify.Config `json:"notify"` // Logger configuration Logger logger.Config `json:"logger"` // Compression configuration Compression compress.Config `json:"compress"` // OpenID configuration OpenID openid.Config `json:"openid"` // External policy enforcements.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri May 24 23:05:23 UTC 2024 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/FacetQueryView.java
* including automatic generation of file type facets and custom query mappings. */ public class FacetQueryView { /** Logger instance for this class */ private static final Logger logger = LogManager.getLogger(FacetQueryView.class); /** Title for this facet query view */ protected String title; /** Map of display keys to their corresponding query strings */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessApiFailureHook.java
return stacktraceString.get(); } final String errorCode = UUID.randomUUID().toString(); if (logger.isDebugEnabled()) { logger.debug("[{}] {}", errorCode, stacktraceString.get().replace("\n", "\\n")); } else { logger.warn("[{}] {}", errorCode, cause.getMessage()); } return "error_code:" + errorCode; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlerLogHelper.java
*/ public CrawlerLogHelper() { super(); } private static final Logger logger = LogManager.getLogger(CrawlerLogHelper.class); @Override public void log(final LogType key, final Object... objs) { if (!ComponentUtil.available()) { if (logger.isDebugEnabled()) { logger.debug("container was destroyed."); } return; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.2K bytes - Viewed (0)