Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for logFilePath (0.08 sec)

  1. src/main/java/org/codelibs/fess/job/ExecJob.java

        }
    
        /**
         * Sets the log file path for this job execution.
         *
         * @param logFilePath the path to the log file
         * @return this ExecJob instance for method chaining
         */
        public ExecJob logFilePath(final String logFilePath) {
            this.logFilePath = logFilePath;
            return this;
        }
    
        /**
         * Sets the log level for this job execution.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/job/ExecJobTest.java

            assertEquals(testSessionId, execJob.sessionId);
            assertSame(execJob, result);
        }
    
        // Test logFilePath setter
        public void test_logFilePath() {
            String testPath = "/path/to/log";
            ExecJob result = execJob.logFilePath(testPath);
            assertEquals(testPath, execJob.logFilePath);
            assertSame(execJob, result);
        }
    
        // Test logLevel setter
        public void test_logLevel() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 24.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceAction.java

         */
        protected void writeLogFiles(final ZipOutputStream zos, final String id) {
            final String logFilePath = systemHelper.getLogFilePath();
            if (StringUtil.isNotBlank(logFilePath)) {
                final Path logDirPath = Paths.get(logFilePath);
                try (Stream<Path> stream = Files.list(logDirPath)) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 18K bytes
    - Viewed (0)
Back to top