Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
3/26/2014
This function adds a string to the current logging level with the specified arguments and verbosity level.
Syntax
BOOL KatoCommentV(
HKATO hKato,
DWORD dwVerbosity,
LPCTSTR szFormat,
va_list pArgs
);
Parameters
- hKato
Handle to a CKato object.
- dwVerbosity
Verbosity level of this log message. This value can be between zero and KATO_MAX_VERBOSITY.
- szFormat
Address of ANSI or UNICODE format-control string.
- pArgs
Pointer to a list of arguments. The number and type of argument parameters depend on the corresponding format-control specifications in the szFormat parameter.
Return Value
Nonzero if successful; otherwise, 0 (zero).
Remarks
The verbosity value is not incremented for the given level.
This function is similar to the KatoLog and KatoLogV functions, except that this function does not record the verbosity level.
Each logging system on the server side has a verbosity filter, which filters out all logs with verbosity values greater than the current filter value for that system. For this reason, you should structure the logging in an application so that the most critical logs get the lowest verbosity level.
Requirements
Header |
kato.h |