Query a server log file for records beginning at index startIndex
.
The name
parameter may be {@link LogFileAccess#MOST_RECENT_NAME}
to query the current server log file, or may be any specific server log
file as returned by {@link LogFileAccess#getLogFileNames}.
To query log records starting at the beginning of the file and moving forward,
use startIndex={@link #FIRST_RECORD}. To query records beginning at the end of the
file and moving backwards, use startIndex={@link #LAST_RECORD} and
specify searchForward=false
.
If searchForward
is true,
then log records beginning with
startRecord
(inclusive) and later
are considered by the query.
If searchForward
is false,
then log records beginning at
startRecord - 1
and earlier are considered by the query.
Because a log file could be deleted
QUESTIONS TO RESOLVE
- What are the legal keys and values of 'nameValueMap'