Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 16 for msg2 (0.02 seconds)

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

            ComponentUtil.getLogNotificationHelper()
                    .offer(new LogNotificationEvent(System.currentTimeMillis(), "ERROR", "org.test", "msg1", null));
            ComponentUtil.getLogNotificationHelper()
                    .offer(new LogNotificationEvent(System.currentTimeMillis(), "WARN", "org.test", "msg2", null));
    
            // expired() will drain buffer then fail on OpenSearch (not available) but should not throw
    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/main/webapp/WEB-INF/view/admin/webconfig/admin_webconfig_details.jsp

                                        <%-- Message --%>
                                    <div>
                                        <la:info id="msg" message="true">
                                            <div class="alert alert-success">${msg}</div>
                                        </la:info>
                                        <la:errors/>
                                    </div>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 11.2K bytes
    - Click Count (0)
  3. src/main/webapp/WEB-INF/view/admin/fileconfig/admin_fileconfig_details.jsp

                                        <%-- Message --%>
                                    <div>
                                        <la:info id="msg" message="true">
                                            <div class="alert alert-success">${msg}</div>
                                        </la:info>
                                        <la:errors/>
                                    </div>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 11.1K bytes
    - Click Count (0)
  4. src/main/resources/log4j2.xml

    		<Property name="backup.audit.max.age" value="360" />
    		<Property name="backup.searchlog.max.age" value="90" />
    		<Property name="audit.log.pattern" value="%msg%n" />
    		<Property name="searchlog.log.pattern" value="%msg%n" />
    		<Property name="llm.log.level" value="${sys:fess.llm.log.level:-info}" />
    	</Properties>
    
    	<Appenders>
    		<RollingFile name="AppFile" fileName="${log.file.basedir}/${domain.name}.log"
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 5.2K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/job/LogNotificationJobTest.java

            events.add(new LogNotificationEvent(timestamp, "WARN", "org.test", "warn msg", null));
    
            String details = testableJob.testFormatDetails(events);
    
            assertTrue(details.contains("ERROR"));
            assertTrue(details.contains("WARN"));
            assertTrue(details.contains("error msg"));
            assertTrue(details.contains("warn msg"));
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 10.5K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/helper/LogNotificationHelperTest.java

        }
    
        @Test
        public void test_drainAll_clears() {
            LogNotificationHelper helper = new LogNotificationHelper();
            helper.offer(new LogNotificationEvent(1000L, "ERROR", "org.test", "msg", null));
            List<LogNotificationEvent> first = helper.drainAll();
            assertEquals(1, first.size());
            List<LogNotificationEvent> second = helper.drainAll();
            assertTrue(second.isEmpty());
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 6.3K bytes
    - Click Count (0)
  7. src/main/webapp/WEB-INF/env/crawler/resources/log4j2.xml

    		<Property name="log.pattern" value="%d [%t] %-5p %msg%n" />
    		<Property name="log.file.basedir" value="${sys:fess.log.path:-target/logs}" />
    		<Property name="backup.date.suffix" value="_%d{yyyyMMdd}" />
    		<Property name="backup.max.history" value="10" />
    		<Property name="stats.log.pattern" value="%msg%n" />
    	</Properties>
    
    	<Appenders>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 2.7K bytes
    - Click Count (0)
  8. src/main/webapp/WEB-INF/view/admin/dataconfig/admin_dataconfig_details.jsp

                                        <%-- Message --%>
                                    <div>
                                        <la:info id="msg" message="true">
                                            <div class="alert alert-success">${msg}</div>
                                        </la:info>
                                        <la:errors/>
                                    </div>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 8.2K bytes
    - Click Count (0)
  9. src/main/webapp/WEB-INF/env/suggest/resources/log4j2.xml

    		<Property name="log.level" value="${sys:fess.log.level:-info}" />
    		<Property name="root.log.level" value="${sys:fess.log.level:-warn}" />
    		<Property name="log.pattern" value="%d [%t] %-5p %msg%n" />
    		<Property name="log.file.basedir" value="${sys:fess.log.path:-target/logs}" />
    		<Property name="backup.date.suffix" value="_%d{yyyyMMdd}" />
    		<Property name="backup.max.history" value="10" />
    	</Properties>
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 1.6K bytes
    - Click Count (0)
  10. src/main/webapp/WEB-INF/env/thumbnail/resources/log4j2.xml

    		<Property name="log.level" value="${sys:fess.log.level:-info}" />
    		<Property name="root.log.level" value="${sys:fess.log.level:-warn}" />
    		<Property name="log.pattern" value="%d [%t] %-5p %msg%n" />
    		<Property name="log.file.basedir" value="${sys:fess.log.path:-target/logs}" />
    		<Property name="backup.date.suffix" value="_%d{yyyyMMdd}" />
    		<Property name="backup.max.history" value="10" />
    	</Properties>
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 1.6K bytes
    - Click Count (0)
Back to Top