![]() |
Kodi Documentation 18.0
Kodi is an open source media player and entertainment hub.
|
Represents the wsgi.errors stream to write error messages. More...
Classes | |
class | XBMCAddon::xbmcwsgi::WsgiErrorStream |
Functions | |
XBMCAddon::xbmcwsgi::WsgiErrorStream::flush () | |
XBMCAddon::xbmcwsgi::WsgiErrorStream::write (...) | |
XBMCAddon::xbmcwsgi::WsgiErrorStream::writelines (...) | |
Represents the wsgi.errors stream to write error messages.
Class: WsgiErrorStream()
This implementation writes the error messages to the application's log file.
XBMCAddon::xbmcwsgi::WsgiErrorStream::flush | ( | ) |
void XBMCAddon::xbmcwsgi::WsgiErrorStream::write | ( | ... | ) |
Writes the given error message to the application's log file.
A trailing \n
is removed.
str | A string to save in log file |
void XBMCAddon::xbmcwsgi::WsgiErrorStream::writelines | ( | ... | ) |
Joins the given list of error messages (without any separator) into a single error message which is written to the application's log file.
seq | A list of strings which will be logged. |