| query()
{
final Logging logging = getLogging();
assert( logging != null );
final LogQueryResult result = logging.queryServerLog(
mLogFile,
mStartIndex,
mSearchForward,
mMaxRecords,
mStartTime,
mStopTime,
mLogLevel,
mModules,
mAttrs );
final LogQueryEntry[] entries = result.getEntries();
if ( entries.length != 0 )
{
// update start index
if ( mSearchForward )
{
|