Sends a log request to the Log Server without waiting for a response. Using this method instead of LogAndWait() can improve performance, because the extra step of insuring the Log Server received the request is not performed.

Namespace: Endeca.Logging
Assembly: Endeca.Logging (in Endeca.Logging.dll) Version: 6.1.3.0

Syntax

C#
public void log(
	LogEntry entry
)
Visual Basic
Public Sub log ( _
	entry As LogEntry _
)
Visual C++
public:
void log(
	LogEntry^ entry
)

Parameters

entry
Type: Endeca.Logging..::..LogEntry
The LogEntry object to send to the server

See Also