Part of twisted.web.wsgi View Source View In Hierarchy
'wsgi.errors'
key in the environ
dictionary
passed to the application object.
This simply passes writes on to logging
system as error
events from the 'wsgi'
system. In the future, it may be
desirable to expose more information in the events it logs, such as the
application object which generated the message.
Method | write | Generate an event for the logging system with the given bytes as the message. |
Method | writelines | Join the given lines and pass them to write to be handled
in the usual way. |
Method | flush | Nothing is buffered, so flushing does nothing. This method is required to exist by PEP 333, though. |
This is called in a WSGI application thread, not the I/O thread.
write
to be handled
in the usual way.
This is called in a WSGI application thread, not the I/O thread.
Parameters | iovec | A list of '\n' -terminated str which
will be logged. |
This is called in a WSGI application thread, not the I/O thread.