Skip to content

Latest commit

 

History

History
60 lines (51 loc) · 1.24 KB

marker-series-write-message-method.md

File metadata and controls

60 lines (51 loc) · 1.24 KB
description title ms.date ms.topic f1_keywords helpviewer_keywords author ms.author manager ms.subservice
Writes a message to the Concurrency Visualizer trace file.
marker_series::write_message Method
11/04/2016
reference
cvmarkersobj/Concurrency, diagnostic::marker_series::write_message
Concurrency, diagnostic::marker_series::write_message method
mikejo5000
mikejo
mijacobs
debug-diagnostics

marker_series::write_message method

Writes a message to the Concurrency Visualizer trace file.

Syntax

void write_message(
   _In_ LPCTSTR _Format,
   ...
);
void write_message(
   marker_importance _Importance,
   _In_ LPCTSTR _Format,
   ...
);
void write_message(
   int _Category,
   _In_ LPCTSTR _Format,
   ...
);
void write_message(
   marker_importance _Importance,
   int _Category,
   _In_ LPCTSTR _Format,
   ...
);

Parameters

_Format A composite format string that contains text intermixed with zero or more format items, which correspond to objects in the argument list.

_Importance Importance level.

_Category Category.Importance level.

Requirements

Header: cvmarkersobj.h

Namespace: Concurrency::diagnostic

See also