A class which sends records to a Web server, using either GET or POST
semantics.
|
|
__init__(self,
host,
url,
method='GET')
Initialize the instance with the host, the request URL, and the
method ("GET" or "POST") |
|
|
|
|
mapLogRecord(self,
record)
Default implementation of mapping the log record into a dict that is
sent as the CGI data. |
|
|
|
|
emit(self,
record)
Emit a record. |
|
|
|
Inherited from Handler:
acquire,
close,
createLock,
flush,
format,
handle,
handleError,
release,
setFormatter,
setLevel
Inherited from Filterer:
addFilter,
filter,
removeFilter
|