Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for isLoggingSearchUseLogfile (0.12 sec)

  1. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

            if (!searchLogList.isEmpty()) {
                final FessConfig fessConfig = ComponentUtil.getFessConfig();
                // write log
                if (fessConfig.isLoggingSearchUseLogfile()) {
                    searchLogList.forEach(this::writeSearchLogEvent);
                }
                // insert search log
                storeSearchLogList(searchLogList);
                // update suggest index
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 26.3K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/helper/SearchLogHelperTest.java

            }
    
            @Override
            public Integer getSearchlogProcessBatchSizeAsInteger() {
                return 100;
            }
    
            @Override
            public boolean isLoggingSearchUseLogfile() {
                return false;
            }
    
            @Override
            public boolean isSuggestSearchLog() {
                return false;
            }
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/service/FavoriteLogService.java

                final FavoriteLog favoriteLog = new FavoriteLog();
                favoriteLogLambda.accept(userInfo, favoriteLog);
                favoriteLogBhv.insert(favoriteLog);
                if (fessConfig.isLoggingSearchUseLogfile()) {
                    ComponentUtil.getSearchLogHelper().writeSearchLogEvent(favoriteLog);
                }
                return true;
            }).orElse(false);
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * comment: Whether to use a log file for search logging.
         * @return The determination, true or false. (if not found, exception but basically no way)
         */
        boolean isLoggingSearchUseLogfile();
    
        /**
         * Get the value for the key 'logging.search.max.queue.size'. <br>
         * The value is, e.g. 10000 <br>
         * comment: Maximum queue size for search logging.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
Back to top