From 639e0b2ac0fb85335511efcf79327d1f4dfacbc3 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?H=C3=A5kan=20Mattsson?=
Date: Wed, 3 Feb 2010 14:27:13 +0000
Subject: OTP-8058 The GUI parts are rewritten to use wxWidgets. Thanks Olle
Mattsson!
For the time being it is still possible to use the old GS based
version of the tool, but it is deprecated. The wxWidgets based
version is started by default.
A new tutorial has been added to the documentation. It is based
on Jayson Vantuyl's article
http://souja.net/2009/04/making-sense-of-erlangs-event-tracer.htm
l.
The functions et:trace_me/4 and et:trace_me/5 has been introduced
in order to replace the deprecated functions et:report_event/4
and et:report_event/5. Hopefully the new names makes it a little
more obvious what the intended usage of the functions are.
A print function has been added to the GUI, in order to enable
printing of sequence charts.
More functionality for hiding unwanted events has been added to
the GUI.
The max_events, hide_unknown and display_mode configuration
parameters to et_viewer is not used any more. Now the event cache
in the Viewer only contains those events that actually are
displayed in the GUI.
Some minor bugs has been fixed. Such as a cleaning up trace
patterns at termination and displaying events with detail level
100.
---
lib/et/doc/src/et_selector.xml | 4 ++--
lib/et/doc/src/et_tutorial.xmlsrc | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
(limited to 'lib/et/doc/src')
diff --git a/lib/et/doc/src/et_selector.xml b/lib/et/doc/src/et_selector.xml
index 3e5b030e7a..dd12166d85 100644
--- a/lib/et/doc/src/et_selector.xml
+++ b/lib/et/doc/src/et_selector.xml
@@ -44,7 +44,7 @@
RawPattern = detail_level()
TracePattern = erlang_trace_pattern_match_spec()
- detail_level() = min | max | integer(X) when X =< 0, X >= 100
+ detail_level() = min | max | integer(X) when X >= 0, X =< 100
@@ -65,7 +65,7 @@
Pattern = detail_level() | empty_match_spec() | erlang_trace_pattern_match_spec()
- detail_level() = min | max | integer(X) when X =<0, X >= 100
+ detail_level() = min | max | integer(X) when X >= 0, X =< 100
empty_match_spec() = []
diff --git a/lib/et/doc/src/et_tutorial.xmlsrc b/lib/et/doc/src/et_tutorial.xmlsrc
index 5c2a5a97e4..c72234a587 100644
--- a/lib/et/doc/src/et_tutorial.xmlsrc
+++ b/lib/et/doc/src/et_tutorial.xmlsrc
@@ -56,7 +56,7 @@
The number (in this case 85) is an integer from 1 to 100 that
specifies the "detail level" of the message. The higher the
number, the more important it is. This provides a crude form of
- priority filtering. Avoid using 100.
+ priority filtering.
The from, to, and message parameters are
exactly what they sound like. from and to are
--
cgit v1.2.3