- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for isLoggingEnabled (0.06 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/org/codelibs/fess/opensearch/config/exentity/ScheduledJob.java
public String getScriptType() { final String st = super.getScriptType(); if (StringUtil.isBlank(st)) { return "groovy"; } return st; } public boolean isLoggingEnabled() { return Constants.T.equals(getJobLogging()); } public boolean isCrawlerJob() { return Constants.T.equals(getCrawler()); } public boolean isEnabled() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:55:54 GMT 2026 - 3.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/job/ScriptExecutorJob.java
try { if (scheduledJob.isLoggingEnabled()) { jobHelper.store(jobLog); task = jobHelper.startMonitorTask(jobLog); } if (logger.isDebugEnabled()) { logger.debug("Starting job: id={}, scriptType={}, script={}", id, scriptType, script); } else if (scheduledJob.isLoggingEnabled() && logger.isInfoEnabled()) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:55:54 GMT 2026 - 5.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/opensearch/config/exentity/ScheduledJobTest.java
final ScheduledJob job = new ScheduledJob(); job.setJobLogging(Constants.T); assertTrue(job.isLoggingEnabled()); } @Test public void test_isLoggingEnabled_false() { final ScheduledJob job = new ScheduledJob(); job.setJobLogging(Constants.F); assertFalse(job.isLoggingEnabled()); } @Test public void test_isLoggingEnabled_null() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:55:54 GMT 2026 - 15.8K bytes - Click Count (0)