Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for isLoggingSearchUseLogfile (0.6 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: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 26.4K bytes
    - Viewed (0)
  2. 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: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  3. 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: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 525.7K bytes
    - Viewed (2)
Back to top