Qore HttpServerUtil Module Reference
1.0.12
|
this abstract class defines the interface for classes that provide logging methods More...
Public Member Methods | |
abstract | log (string fmt) |
called to log information to the registered log code More... | |
logArgs (*softlist< auto > 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< auto > 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< auto > | 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< auto > | args | ) |
calls logError() with the given args
args | a single string or a list of arguments used to call the logError() method |