Default implementation of mapping the log record into a dict that is sent as the CGI data. Overwrite in your class. Contributed by Franz Glasner.
(self, record)
| 1251 | self.context = context |
| 1252 | |
| 1253 | def mapLogRecord(self, record): |
| 1254 | """ |
| 1255 | Default implementation of mapping the log record into a dict |
| 1256 | that is sent as the CGI data. Overwrite in your class. |
| 1257 | Contributed by Franz Glasner. |
| 1258 | """ |
| 1259 | return record.__dict__ |
| 1260 | |
| 1261 | def getConnection(self, host, secure): |
| 1262 | """ |