]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/log.tex
fixed nonsenses in tnoneng.tex
[wxWidgets.git] / docs / latex / wx / log.tex
CommitLineData
9ee2d31c
VZ
1\section{\class{wxLog}}\label{wxlog}
2
3wxLog class defines the interface for the {\it log targets} used by wxWindows
4logging functions as explained in the \helpref{wxLog overview}{wxlogoverview}.
5The only situations when you need to directly use this class is when you want
6to derive your own log target because the existing ones don't satisfy your
7needs. Another case is if you wish to customize the behaviour of the standard
8logging classes (all of which respect the wxLog settings): for example, set
9which trace messages are logged and which are not or change (or even remove
10completely) the timestamp on the messages.
11
12Otherwise, it is completely hidden behind the {\it wxLogXXX()} functions and
13you may not even know about its existence.
14
15See \helpref{log overview}{wxlogoverview} for the descriptions of wxWindows
16logging facilities.
17
18\wxheading{Derived from}
19
20No base class
21
954b8ae6
JS
22\wxheading{Include files}
23
24<wx/log.h>
25
9ee2d31c
VZ
26\latexignore{\rtfignore{\wxheading{Function groups}}}
27
28\membersection{Static functions}
29
30The functions in this section work with and manipulate the active log target.
99f09bc1 31The {\it OnLog()} is called by the {\it wxLogXXX()} functions and invokes the
9ee2d31c
VZ
32{\it DoLog()} of the active log target if any. Get/Set methods are used to
33install/query the current active target and, finally, {\it
34DontCreateOnDemand()} disables the automatic creation of a standard log target
35if none actually exists. It is only useful when the application is terminating
36and shouldn't be used in other situations because it may easily lead to a loss
37of messages.
38
39\helpref{OnLog}{wxlogonlog}\\
40\helpref{GetActiveTarget}{wxloggetactivetarget}\\
42ff6409 41\helpref{SetActiveTarget}{wxlogsetactivetarget}\\
9ee2d31c
VZ
42\helpref{DontCreateOnDemand}{wxlogdontcreateondemand}
43
44\membersection{Message buffering}
45
46Some of wxLog implementations, most notably the standard
6fb26ea3 47wxLogGui class, buffer the messages (for example, to avoid
9ee2d31c
VZ
48showing the user a zillion of modal message boxes one after another - which
49would be really annoying). {\it Flush()} shows them all and clears the buffer
50contents. Although this function doesn't do anything if the buffer is already
51empty, {\it HasPendingMessages()} is also provided which allows to explicitly
52verify it.
53
54\helpref{Flush}{wxlogflush}\\
e1ea357c 55\helpref{FlushActive}{wxlogflushactive}\\
9ee2d31c
VZ
56\helpref{HasPendingMessages}{haspendingmessages}
57
42ff6409 58\membersection{Customization}\label{wxlogcustomization}
9ee2d31c
VZ
59
60The functions below allow some limited customization of wxLog behaviour
61without writing a new log target class (which, aside of being a matter of
62several minutes, allows you to do anything you want).
63
64The verbose messages are the trace messages which are not disabled in the
fe482327
SB
65release mode and are generated by \helpref{wxLogVerbose}{wxlogverbose}. They
66are not normally shown to the user because they present little interest, but
67may be activated, for example, in order to help the user find some program
68problem.
9ee2d31c 69
ac7f0167
VZ
70As for the (real) trace messages, their handling depends on the settings of
71the (application global) {\it trace mask}. There are two ways to specify it:
fe482327 72either by using \helpref{SetTraceMask}{wxlogsettracemask} and
ac7f0167
VZ
73\helpref{GetTraceMask}{wxloggettracemask} and using
74\helpref{wxLogTrace}{wxlogtrace} which takes an integer mask or by using
75\helpref{AddTraceMask}{wxlogaddtracemask} for string trace masks.
76
77The difference between bit-wise and string trace masks is that a message using
78integer trace mask will only be logged if all bits of the mask are set in the
79current mask while a message using string mask will be logged simply if the
80mask had been added before to the list of allowed ones.
81
82For example,
fa482912 83
ac7f0167
VZ
84\begin{verbatim}
85// wxTraceOleCalls is one of standard bit masks
86wxLogTrace(wxTraceRefCount | wxTraceOleCalls, "Active object ref count: %d", nRef);
87\end{verbatim}
88will do something only if the current trace mask contains both
89{\tt wxTraceRefCount} and {\tt wxTraceOle}, but
fa482912 90
ac7f0167
VZ
91\begin{verbatim}
92// wxTRACE_OleCalls is one of standard string masks
fe482327 93wxLogTrace(wxTRACE_OleCalls, "IFoo::Bar() called");
ac7f0167 94\end{verbatim}
fa482912 95
ac7f0167 96will log the message if it was preceded by
fa482912 97
9ee2d31c 98\begin{verbatim}
ac7f0167 99wxLog::AddTraceMask(wxTRACE_OleCalls);
9ee2d31c 100\end{verbatim}
ac7f0167
VZ
101
102Using string masks is simpler and allows to easily add custom ones, so this is
103the preferred way of working with trace messages. The integer trace mask is
104kept for compatibility and for additional (but very rarely needed) flexibility
105only.
106
107The standard trace masks are given in \helpref{wxLogTrace}{wxlogtrace}
108documentation.
9ee2d31c
VZ
109
110Finally, the {\it wxLog::DoLog()} function automatically prepends a time stamp
111to all the messages. The format of the time stamp may be changed: it can be
112any string with \% specificators fully described in the documentation of the
113standard {\it strftime()} function. For example, the default format is
114"[\%d/\%b/\%y \%H:\%M:\%S] " which gives something like "[17/Sep/98 22:10:16] "
115(without quotes) for the current date. Setting an empty string as the time
116format disables timestamping of the messages completely.
117
ac7f0167
VZ
118{\bf NB:} Timestamping is disabled for Visual C++ users in debug builds by
119default because otherwise it would be impossible to directly go to the line
120from which the log message was generated by simply clicking in the debugger
121window on the corresponding error message. If you wish to enable it, please use
122\helpref{SetTimestamp}{wxlogsettimestamp} explicitly.
123
124\helpref{AddTraceMask}{wxlogaddtracemask}\\
125\helpref{RemoveTraceMask}{wxlogremovetracemask}\\
126\helpref{IsAllowedTraceMask}{wxlogisallowedtracemask}\\
9ee2d31c
VZ
127\helpref{SetVerbose}{wxlogsetverbose}\\
128\helpref{GetVerbose}{wxloggetverbose}\\
22d6efa8
JS
129\helpref{SetTimestamp}{wxlogsettimestamp}\\
130\helpref{GetTimestamp}{wxloggettimestamp}\\
9ee2d31c
VZ
131\helpref{SetTraceMask}{wxlogsettracemask}\\
132\helpref{GetTraceMask}{wxloggettracemask}
133
134%%%%% MEMBERS HERE %%%%%
135\helponly{\insertatlevel{2}{
136
137\wxheading{Members}
138
139}}
140
ac7f0167
VZ
141\membersection{wxLog::AddTraceMask}\label{wxlogaddtracemask}
142
143\func{static void}{AddTraceMask}{\param{const wxString\& }{mask}}
144
145Add the {\it mask} to the list of allowed masks for
146\helpref{wxLogTrace}{wxlogtrace}.
147
148See also: \helpref{RemoveTraceMask}{wxlogremovetracemask}
149
9ee2d31c
VZ
150\membersection{wxLog::OnLog}\label{wxlogonlog}
151
152\func{static void}{OnLog}{\param{wxLogLevel }{ level}, \param{const char * }{ message}}
153
154Forwards the message at specified level to the {\it DoLog()} function of the
155active log target if there is any, does nothing otherwise.
156
157\membersection{wxLog::GetActiveTarget}\label{wxloggetactivetarget}
158
159\func{static wxLog *}{GetActiveTarget}{\void}
160
161Returns the pointer to the active log target (may be NULL).
162
163\membersection{wxLog::SetActiveTarget}\label{wxlogsetactivetarget}
164
165\func{static wxLog *}{SetActiveTarget}{\param{wxLog * }{ logtarget}}
166
167Sets the specified log target as the active one. Returns the pointer to the
168previous active log target (may be NULL).
169
170\membersection{wxLog::DontCreateOnDemand}\label{wxlogdontcreateondemand}
171
172\func{static void}{DontCreateOnDemand}{\void}
173
174Instructs wxLog to not create new log targets on the fly if there is none
175currently. (Almost) for internal use only.
176
42ff6409 177\membersection{wxLog::Flush}\label{wxlogflush}
9ee2d31c
VZ
178
179\func{virtual void}{Flush}{\void}
180
181Shows all the messages currently in buffer and clears it. If the buffer
182is already empty, nothing happens.
183
e1ea357c
VZ
184\membersection{wxLog::FlushActive}\label{wxlogflushactive}
185
186\func{static void}{FlushActive}{\void}
187
188Flushes the current log target if any, does nothing if there is none.
189
190See also:
191
192\helpref{Flush}{wxlogflush}
193
42ff6409 194\membersection{wxLog::HasPendingMessages}\label{haspendingmessages}
9ee2d31c
VZ
195
196\constfunc{bool}{HasPendingMessages}{\void}
197
198Returns true if there are any messages in the buffer (not yet shown to the
199user). (Almost) for internal use only.
200
42ff6409 201\membersection{wxLog::SetVerbose}\label{wxlogsetverbose}
9ee2d31c
VZ
202
203\func{void}{SetVerbose}{\param{bool }{ verbose = TRUE}}
204
205Activates or desactivates verbose mode in which the verbose messages are
206logged as the normal ones instead of being silently dropped.
207
42ff6409 208\membersection{wxLog::GetVerbose}\label{wxloggetverbose}
9ee2d31c
VZ
209
210\constfunc{bool}{GetVerbose}{\void}
211
212Returns whether the verbose mode is currently active.
213
22d6efa8 214\membersection{wxLog::SetTimestamp}\label{wxlogsettimestamp}
9ee2d31c 215
22d6efa8 216\func{void}{SetTimestamp}{\param{const char * }{ format}}
9ee2d31c
VZ
217
218Sets the timestamp format prepended by the default log targets to all
219messages. The string may contain any normal characters as well as \%
220prefixed format specificators, see {\it strftime()} manual for details.
da4b7ffc 221Passing a NULL value (not empty string) to this function disables message timestamping.
9ee2d31c 222
22d6efa8 223\membersection{wxLog::GetTimestamp}\label{wxloggettimestamp}
9ee2d31c 224
22d6efa8 225\constfunc{const char *}{GetTimestamp}{\void}
9ee2d31c
VZ
226
227Returns the current timestamp format string.
228
42ff6409 229\membersection{wxLog::SetTraceMask}\label{wxlogsettracemask}
9ee2d31c
VZ
230
231\func{static void}{SetTraceMask}{\param{wxTraceMask }{ mask}}
232
233Sets the trace mask, see \helpref{Customization}{wxlogcustomization}
234section for details.
235
42ff6409 236\membersection{wxLog::GetTraceMask}\label{wxloggettracemask}
9ee2d31c 237
42ff6409
JS
238Returns the current trace mask, see \helpref{Customization}{wxlogcustomization} section
239for details.
62448488 240
ac7f0167
VZ
241\membersection{wxLog::IsAllowedTraceMask}\label{wxlogisallowedtracemask}
242
243\func{static bool}{IsAllowedTraceMask}{\param{const wxChar *}{mask}}
244
245Returns TRUE if the {\it mask} is one of allowed masks for
246\helpref{wxLogTrace}{wxlogtrace}.
247
248See also: \helpref{AddTraceMask}{wxlogaddtracemask},
249\helpref{RemoveTraceMask}{wxlogremovetracemask}
250
251\membersection{wxLog::RemoveTraceMask}\label{wxlogremovetracemask}
252
253\func{static void}{RemoveTraceMask}{\param{const wxString\& }{mask}}
254
255Remove the {\it mask} from the list of allowed masks for
256\helpref{wxLogTrace}{wxlogtrace}.
257
258See also: \helpref{AddTraceMask}{wxlogaddtracemask}
259