Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 8 of 8 for aurait (0.03 seconds)

  1. src/main/resources/log4j2.xml

    				</Delete>
    			</DefaultRolloverStrategy>
    		</RollingFile>
    		<RollingFile name="AuditFile" fileName="${log.file.basedir}/audit.log"
    			filePattern="${log.file.basedir}/audit${backup.date.suffix}-%i.log.gz">
    			<PatternLayout>
    				<Pattern>${audit.log.pattern}</Pattern>
    			</PatternLayout>
    			<Policies>
    				<TimeBasedTriggeringPolicy />
    				<SizeBasedTriggeringPolicy size="100 MB" />
    			</Policies>
    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)
  2. src/test/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceActionTest.java

            final AdminMaintenanceAction action = new AdminMaintenanceAction();
            assertTrue(action.isLogFilename("fess.log"));
            assertTrue(action.isLogFilename("crawler.log"));
            assertTrue(action.isLogFilename("audit.log"));
        }
    
        @Test
        public void test_isLogFilename_logGzExtension() {
            final AdminMaintenanceAction action = new AdminMaintenanceAction();
            assertTrue(action.isLogFilename("fess.log.gz"));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 5.3K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/exec/SuggestCreator.java

                    logger.error("Failed to update suggest index.", t);
                    exitCode.set(1);
                    latch.countDown();
                });
    
                try {
                    latch.await();
                } catch (final InterruptedException ignore) {
                    if (logger.isDebugEnabled()) {
                        logger.debug("Interrupted.", ignore);
                    }
                    exitCode.set(1);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 12.1K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/helper/ActivityHelperTest.java

                    localLogMsg.get());
        }
    
        // ===== Access Denied Audit Log Tests =====
    
        @Test
        public void test_accessDenied() {
            activityHelper.useEcsFormat = false;
            activityHelper.accessDenied(OptionalThing.empty(), "/admin/user/");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 11:45:43 GMT 2026
    - 24.3K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/script/groovy/GroovyEngine.java

                    logger.debug("Failed to get scheduled job from thread local", e);
                }
            }
            return null;
        }
    
        /**
         * Logs script execution to the audit log.
         *
         * @param script the script content that was executed
         * @param result the execution result (e.g., "success" or "failure:ExceptionType")
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 11.9K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g.  */
        String APP_AUDIT_LOG_FORMAT = "app.audit.log.format";
    
        /** The key of the configuration. e.g. true */
        String SCRIPT_AUDIT_LOG_ENABLED = "script.audit.log.enabled";
    
        /** The key of the configuration. e.g. 100 */
        String SCRIPT_AUDIT_LOG_MAX_LENGTH = "script.audit.log.max.length";
    
        /** The key of the configuration. e.g. -Djava.awt.headless=true<br>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 576.9K bytes
    - Click Count (2)
  7. src/main/java/org/codelibs/fess/helper/ActivityHelper.java

            // Default constructor
        }
    
        /**
         * The logger.
         */
        protected Logger logger = null;
    
        /**
         * The logger name.
         */
        protected String loggerName = "fess.log.audit";
    
        /**
         * The permission separator.
         */
        protected String permissionSeparator = "|";
    
        /**
         * The flag to use ECS format.
         */
        protected boolean useEcsFormat = false;
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 11:45:43 GMT 2026
    - 13.1K bytes
    - Click Count (0)
  8. src/main/resources/fess_config.properties

    # Extension names for application customization.
    app.extension.names=
    
    # Audit log format.
    app.audit.log.format=
    
    # Script audit log settings.
    script.audit.log.enabled=true
    script.audit.log.max.length=100
    
    # JVM options for the crawler process.
    jvm.crawler.options=\
    -Djava.awt.headless=true\n\
    -Dfile.encoding=UTF-8\n\
    -Djna.nosys=true\n\
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 59.3K bytes
    - Click Count (0)
Back to Top