Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for writeSearchLogEvent (0.8 sec)

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

                    insertList.remove(entity);
                });
                // write log
                if (fessConfig.isLoggingSearchUseLogfile()) {
                    insertList.forEach(this::writeSearchLogEvent);
                    updateList.forEach(this::writeSearchLogEvent);
                }
                // insert/update user info
                userInfoBhv.batchInsert(insertList);
                userInfoBhv.batchUpdate(updateList);
    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/main/java/org/codelibs/fess/app/service/FavoriteLogService.java

                favoriteLogLambda.accept(userInfo, favoriteLog);
                favoriteLogBhv.insert(favoriteLog);
                if (fessConfig.isLoggingSearchUseLogfile()) {
                    ComponentUtil.getSearchLogHelper().writeSearchLogEvent(favoriteLog);
                }
                return true;
            }).orElse(false);
        }
    
        /**
         * Retrieves a list of URLs that are in the user's favorites from the provided URL list.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.6K bytes
    - Viewed (0)
Back to top