Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for setLogNotificationEnabled (0.12 seconds)

  1. src/test/java/org/codelibs/fess/timer/LogNotificationTargetTest.java

            super.setUp(testInfo);
            ComponentUtil.register(new LogNotificationHelper(), "logNotificationHelper");
            ComponentUtil.getLogNotificationHelper().drainAll();
            ComponentUtil.getFessConfig().setLogNotificationEnabled(true);
            logNotificationTarget = new LogNotificationTarget();
        }
    
        @Test
        public void test_constructor() {
            LogNotificationTarget target = new LogNotificationTarget();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 4.7K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/util/LogNotificationAppenderTest.java

            super.setUp(testInfo);
            ComponentUtil.register(new LogNotificationHelper(), "logNotificationHelper");
            ComponentUtil.getLogNotificationHelper().drainAll();
            ComponentUtil.getFessConfig().setLogNotificationEnabled(true);
            appender = LogNotificationAppender.createAppender("test", "ERROR", null, null);
        }
    
        private LogEvent createLogEvent(final Level level, final String loggerName, final String message) {
    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)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        }
    
        default String getNotificationTo() {
            return getSystemProperty(Constants.NOTIFICATION_TO_PROPERTY, StringUtil.EMPTY);
        }
    
        default void setLogNotificationEnabled(final boolean value) {
            setSystemPropertyAsBoolean(Constants.LOG_NOTIFICATION_ENABLED_PROPERTY, value);
        }
    
        default boolean isLogNotificationEnabled() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 92.3K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java

            fessConfig.setSlackWebhookUrls(form.slackWebhookUrls);
            fessConfig.setGoogleChatWebhookUrls(form.googleChatWebhookUrls);
            fessConfig.setLogNotificationEnabled(isCheckboxEnabled(form.logNotificationEnabled));
            if (StringUtil.isNotBlank(form.logNotificationLevel)) {
                fessConfig.setLogNotificationLevel(form.logNotificationLevel);
            }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 05:54:31 GMT 2026
    - 27.2K bytes
    - Click Count (0)
Back to Top