1wxLogNull(3) Erlang Module Definition wxLogNull(3)
2
3
4
6 wxLogNull - Functions for wxLogNull class
7
9 This class allows you to temporarily suspend logging. All calls to the
10 log functions during the life time of an object of this class are just
11 ignored.
12
13 In particular, it can be used to suppress the log messages given by
14 wxWidgets itself but it should be noted that it is rarely the best way
15 to cope with this problem as all log messages are suppressed, even if
16 they indicate a completely different error than the one the programmer
17 wanted to suppress.
18
19 For instance, the example of the overview:
20
21 would be better written as:
22
23 wxWidgets docs: wxLogNull
24
26 wxLogNull() = wx:wx_object()
27
29 new() -> wxLogNull()
30
31 Suspends logging.
32
33 destroy(This :: wxLogNull()) -> ok
34
35 Resumes logging.
36
37
38
39wxWidgets team. wx 2.1.4 wxLogNull(3)