|
Qore HttpServerUtil Module Reference
0.3.12.1
|
this abstract class defines the interface for classes that provide logging methods More...

Public Member Functions | |
| abstract | log (string fmt) |
| called to log information to the registered log code More... | |
| logArgs (*softlist args) | |
| calls log() with the given args More... | |
| abstract | logError (string fmt) |
| called to log error information to the registered error log code More... | |
| logErrorArgs (*softlist args) | |
| calls logError() with the given args More... | |
this abstract class defines the interface for classes that provide logging methods
|
pure virtual |
called to log information to the registered log code
| fmt | the message to log, can be a format string, in which case additional arguments are processed with vsprintf() |
| HttpServer::AbstractLogger::logArgs | ( | *softlist | args | ) |
|
pure virtual |
called to log error information to the registered error log code
| fmt | the error message to log, can be a format string, in which case additional arguments are processed with vsprintf() |
| HttpServer::AbstractLogger::logErrorArgs | ( | *softlist | args | ) |
calls logError() with the given args
| args | a single string or a list of arguments used to call the logError() method |