From ca543f04e3029421028f61035d4db78007bcecf7 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sun, 15 Oct 2017 13:08:32 +0200 Subject: [PATCH] Document string literal messages. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 17ed56e4..0719f405 100644 --- a/README.md +++ b/README.md @@ -70,7 +70,7 @@ Tracy is able to capture and draw value changes over time. You may use it to ana #### Message log -Fast navigation in large data set and correlation of zones with what was happening in application may be difficult. To ease these issues tracy provides a message log functionality. You can send messages (for example, your typical debug output) using the `TracyMessage( text, size )` macro (tracy will allocate memory for message storage). Messages are displayed on a chronological list and in the zone view. +Fast navigation in large data set and correlation of zones with what was happening in application may be difficult. To ease these issues tracy provides a message log functionality. You can send messages (for example, your typical debug output) using the `TracyMessage( text, size )` macro (tracy will allocate memory for message storage). Alternatively, use `TracyMessageL( text )` for string literal messages. Messages are displayed on a chronological list and in the zone view. ![](doc/messages.png)