Share via


LogComment

Other versions of this page are also available for the following:

Windows Mobile Not SupportedWindows Embedded CE Supported

8/27/2008

This function writes to the logging stream using the default logging zone when the verbosity level is set to comment or lower.

Syntax

void LogComment(
  const TCHAR* tszFormat,
  vargs ...
);

Parameters

  • tszFormat
    [in] Pointer to a null-terminated string that contains formatting specifications for additional parameters to pass to this function. The format is identical to that used in printf.
  • ...
    [in] One or more optional parameters. The number and type of these additional parameters depends on the value of the tszFormat parameter.

Remarks

Use this function to record general-purpose comments that serve a debugging purpose. For example, use this function to record when the log module starts and exits, when a significant test case begins or ends, and so on. Do not use this function to record minor details. To record minor details, use the LogVerbose function.

Requirements

Header stressutils.h
Library stressutils.lib
Windows Embedded CE Windows CE .NET 4.2 and later

See Also

Other Resources

Windows Embedded CE Stress Tool Functions