KatoComment (Windows Embedded CE 6.0)
1/6/2010
This function logs a string to the current logging level with a specified verbosity level. The verbosity value is not tallied for the given level.
Syntax
BOOL KatoComment(
HKATO hKato,
DWORD dwVerbosity,
LPCTSTR szFormat
);
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.
Return Value
Nonzero if successful; otherwise, zero.
Remarks
One or more optional arguments can also be used in this function. The number and type of argument parameters depends on the corresponding format-control specifications in the szFormat parameter.
This function issimilar to the KatoLog function, 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, applications should structure their logging so that the most critical logs get the lowest verbosity level.
Requirements
Header | kato.h |
Library | kato.lib |
Windows Embedded CE | Windows CE 3.0 and later |