Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for LogNotificationTarget (0.1 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/org/codelibs/fess/exec/ThumbnailGenerator.java

                                true);
    
                if (ComponentUtil.getFessConfig().isLogNotificationEnabled()) {
                    logNotificationTarget = new LogNotificationTarget();
                    logNotificationTask = TimeoutManager.getInstance()
                            .addTimeoutTarget(logNotificationTarget, ComponentUtil.getFessConfig().getLogNotificationFlushIntervalAsInteger(),
                                    true);
                }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 10.4K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/exec/Crawler.java

                                true);
    
                if (ComponentUtil.getFessConfig().isLogNotificationEnabled()) {
                    logNotificationTarget = new LogNotificationTarget();
                    logNotificationTask = TimeoutManager.getInstance()
                            .addTimeoutTarget(logNotificationTarget, ComponentUtil.getFessConfig().getLogNotificationFlushIntervalAsInteger(),
                                    true);
                }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 32.4K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/util/LogNotificationAppenderTest.java

        }
    
        @Test
        public void test_append_excludedLogger_logNotificationTarget() {
            final LogEvent event = createLogEvent(Level.ERROR, "org.codelibs.fess.timer.LogNotificationTarget", "should be excluded");
            appender.append(event);
            final List<LogNotificationEvent> events = ComponentUtil.getLogNotificationHelper().drainAll();
            assertEquals(0, events.size());
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 10.7K bytes
    - Click Count (0)
Back to Top