]> git.saurik.com Git - wxWidgets.git/blame - include/wx/log.h
Calling sizerItem->SetWindow shoudl set the minsize too.
[wxWidgets.git] / include / wx / log.h
CommitLineData
c801d85f 1/////////////////////////////////////////////////////////////////////////////
8ca28fb7 2// Name: wx/log.h
c801d85f
KB
3// Purpose: Assorted wxLogXXX functions, and wxLog (sink for logs)
4// Author: Vadim Zeitlin
5// Modified by:
6// Created: 29/01/98
7// RCS-ID: $Id$
8// Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
371a5b4e 9// Licence: wxWindows licence
c801d85f
KB
10/////////////////////////////////////////////////////////////////////////////
11
886dd7d2
VZ
12#ifndef _WX_LOG_H_
13#define _WX_LOG_H_
c801d85f 14
12028905 15#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
d6b9496a 16 #pragma interface "log.h"
0d3820b3 17#endif
c801d85f 18
df5168c4 19#include "wx/defs.h"
38830220 20
886dd7d2
VZ
21#if wxUSE_LOG
22
df5168c4
MB
23#include "wx/string.h"
24#include "wx/arrstr.h"
25
546db2a8
VZ
26// ----------------------------------------------------------------------------
27// forward declarations
28// ----------------------------------------------------------------------------
29
886dd7d2 30#if wxUSE_GUI
bddd7a8d
VZ
31 class WXDLLIMPEXP_CORE wxTextCtrl;
32 class WXDLLIMPEXP_CORE wxLogFrame;
33 class WXDLLIMPEXP_CORE wxFrame;
886dd7d2 34#endif // wxUSE_GUI
546db2a8
VZ
35
36// ----------------------------------------------------------------------------
37// types
38// ----------------------------------------------------------------------------
39
40typedef unsigned long wxTraceMask;
41typedef unsigned long wxLogLevel;
42
43// ----------------------------------------------------------------------------
44// headers
45// ----------------------------------------------------------------------------
46
0e0126c2 47#ifndef __WXWINCE__
c30aaf75 48#include <time.h> // for time_t
0e0126c2 49#endif
c30aaf75
VZ
50
51#include "wx/dynarray.h"
d6b9496a 52
edc73852
RD
53#ifndef wxUSE_LOG_DEBUG
54# ifdef __WXDEBUG__
55# define wxUSE_LOG_DEBUG 1
56# else // !__WXDEBUG__
57# define wxUSE_LOG_DEBUG 0
58# endif
59#endif
60
9ef3052c
VZ
61// ----------------------------------------------------------------------------
62// constants
63// ----------------------------------------------------------------------------
64
65// different standard log levels (you may also define your own)
66enum
67{
d6b9496a
VZ
68 wxLOG_FatalError, // program can't continue, abort immediately
69 wxLOG_Error, // a serious error, user must be informed about it
70 wxLOG_Warning, // user is normally informed about it but may be ignored
71 wxLOG_Message, // normal message (i.e. normal output of a non GUI app)
d6b9496a 72 wxLOG_Status, // informational: might go to the status line of GUI app
edc73852 73 wxLOG_Info, // informational message (a.k.a. 'Verbose')
d6b9496a
VZ
74 wxLOG_Debug, // never shown to the user, disabled in release mode
75 wxLOG_Trace, // trace messages are also only enabled in debug mode
76 wxLOG_Progress, // used for progress indicator (not yet)
edc73852 77 wxLOG_User = 100, // user defined levels start here
65ca8c0b 78 wxLOG_Max = 10000
9ef3052c
VZ
79};
80
d6b9496a
VZ
81// symbolic trace masks - wxLogTrace("foo", "some trace message...") will be
82// discarded unless the string "foo" has been added to the list of allowed
83// ones with AddTraceMask()
84
08298395
OK
85#define wxTRACE_MemAlloc wxT("memalloc") // trace memory allocation (new/delete)
86#define wxTRACE_Messages wxT("messages") // trace window messages/X callbacks
87#define wxTRACE_ResAlloc wxT("resalloc") // trace GDI resource allocation
88#define wxTRACE_RefCount wxT("refcount") // trace various ref counting operations
d6b9496a
VZ
89
90#ifdef __WXMSW__
08298395 91 #define wxTRACE_OleCalls wxT("ole") // OLE interface calls
d6b9496a
VZ
92#endif
93
94// the trace masks have been superceded by symbolic trace constants, they're
95// for compatibility only andwill be removed soon - do NOT use them
96
9ef3052c
VZ
97// meaning of different bits of the trace mask (which allows selectively
98// enable/disable some trace messages)
99#define wxTraceMemAlloc 0x0001 // trace memory allocation (new/delete)
100#define wxTraceMessages 0x0002 // trace window messages/X callbacks
101#define wxTraceResAlloc 0x0004 // trace GDI resource allocation
102#define wxTraceRefCount 0x0008 // trace various ref counting operations
103
2049ba38 104#ifdef __WXMSW__
d6b9496a 105 #define wxTraceOleCalls 0x0100 // OLE interface calls
9ef3052c
VZ
106#endif
107
65f19af1 108#include "wx/iosfwrap.h"
470b7da3 109
c801d85f
KB
110// ----------------------------------------------------------------------------
111// derive from this class to redirect (or suppress, or ...) log messages
112// normally, only a single instance of this class exists but it's not enforced
c801d85f 113// ----------------------------------------------------------------------------
d6b9496a 114
bddd7a8d 115class WXDLLIMPEXP_BASE wxLog
c801d85f
KB
116{
117public:
d6b9496a
VZ
118 // ctor
119 wxLog();
120
04662def
RL
121 // Internal buffer.
122 // Allow replacement of the fixed size static buffer with
123 // a user allocated one. Pass in NULL to restore the
124 // built in static buffer.
125 static wxChar *SetLogBuffer( wxChar *buf, size_t size = 0 );
126
d6b9496a
VZ
127 // these functions allow to completely disable all log messages
128 // is logging disabled now?
129 static bool IsEnabled() { return ms_doLog; }
130 // change the flag state, return the previous one
131 static bool EnableLogging(bool doIt = TRUE)
132 { bool doLogOld = ms_doLog; ms_doLog = doIt; return doLogOld; }
133
134 // static sink function - see DoLog() for function to overload in the
135 // derived classes
9e3d3318 136 static void OnLog(wxLogLevel level, const wxChar *szString, time_t t)
d6b9496a 137 {
edc73852 138 if ( IsEnabled() && ms_logLevel >= level ) {
d6b9496a
VZ
139 wxLog *pLogger = GetActiveTarget();
140 if ( pLogger )
141 pLogger->DoLog(level, szString, t);
142 }
803bf1c5 143 }
d6b9496a
VZ
144
145 // message buffering
146 // flush shows all messages if they're not logged immediately (FILE
147 // and iostream logs don't need it, but wxGuiLog does to avoid showing
148 // 17 modal dialogs one after another)
149 virtual void Flush();
d6b9496a 150
bbfa0322
VZ
151 // flush the active target if any
152 static void FlushActive()
153 {
2ed3265e
VZ
154 if ( !ms_suspendCount )
155 {
156 wxLog *log = GetActiveTarget();
1ec5cbf3 157 if ( log )
2ed3265e
VZ
158 log->Flush();
159 }
bbfa0322 160 }
1ec5cbf3
VZ
161
162 // only one sink is active at each moment
d6b9496a
VZ
163 // get current log target, will call wxApp::CreateLogTarget() to
164 // create one if none exists
165 static wxLog *GetActiveTarget();
166 // change log target, pLogger may be NULL
167 static wxLog *SetActiveTarget(wxLog *pLogger);
168
2ed3265e
VZ
169 // suspend the message flushing of the main target until the next call
170 // to Resume() - this is mainly for internal use (to prevent wxYield()
171 // from flashing the messages)
172 static void Suspend() { ms_suspendCount++; }
173 // must be called for each Suspend()!
174 static void Resume() { ms_suspendCount--; }
175
d6b9496a
VZ
176 // functions controlling the default wxLog behaviour
177 // verbose mode is activated by standard command-line '-verbose'
178 // option
fd7718b2 179 static void SetVerbose(bool bVerbose = TRUE) { ms_bVerbose = bVerbose; }
edc73852
RD
180
181 // Set log level. Log messages with level > logLevel will not be logged.
182 static void SetLogLevel(wxLogLevel logLevel) { ms_logLevel = logLevel; }
183
d6b9496a
VZ
184 // should GetActiveTarget() try to create a new log object if the
185 // current is NULL?
36bd6902 186 static void DontCreateOnDemand();
d6b9496a
VZ
187
188 // trace mask (see wxTraceXXX constants for details)
189 static void SetTraceMask(wxTraceMask ulMask) { ms_ulTraceMask = ulMask; }
190 // add string trace mask
df5168c4
MB
191 static void AddTraceMask(const wxString& str)
192 { ms_aTraceMasks.push_back(str); }
d6b9496a
VZ
193 // add string trace mask
194 static void RemoveTraceMask(const wxString& str);
36bd6902
VZ
195 // remove all string trace masks
196 static void ClearTraceMasks();
0e080be6
RL
197 // get string trace masks
198 static const wxArrayString &GetTraceMasks() { return ms_aTraceMasks; }
d6b9496a 199
d2e1ef19
VZ
200 // sets the timestamp string: this is used as strftime() format string
201 // for the log targets which add time stamps to the messages - set it
202 // to NULL to disable time stamping completely.
203 static void SetTimestamp(const wxChar *ts) { ms_timestamp = ts; }
204
edc73852 205
d6b9496a
VZ
206 // accessors
207 // gets the verbose status
fd7718b2 208 static bool GetVerbose() { return ms_bVerbose; }
d6b9496a
VZ
209 // get trace mask
210 static wxTraceMask GetTraceMask() { return ms_ulTraceMask; }
211 // is this trace mask in the list?
df5168c4 212 static bool IsAllowedTraceMask(const wxChar *mask);
edc73852
RD
213 // return the current loglevel limit
214 static wxLogLevel GetLogLevel() { return ms_logLevel; }
d6b9496a 215
d2e1ef19
VZ
216 // get the current timestamp format string (may be NULL)
217 static const wxChar *GetTimestamp() { return ms_timestamp; }
218
edc73852 219
d2e1ef19
VZ
220 // helpers
221 // put the time stamp into the string if ms_timestamp != NULL (don't
222 // change it otherwise)
223 static void TimeStamp(wxString *str);
224
d6b9496a
VZ
225 // make dtor virtual for all derived classes
226 virtual ~wxLog() { }
c801d85f 227
c801d85f 228
1ec5cbf3 229 // this method exists for backwards compatibility only, don't use
dc259b79 230 bool HasPendingMessages() const { return TRUE; }
1ec5cbf3
VZ
231
232protected:
d6b9496a
VZ
233 // the logging functions that can be overriden
234 // default DoLog() prepends the time stamp and a prefix corresponding
235 // to the message to szString and then passes it to DoLogString()
9e3d3318 236 virtual void DoLog(wxLogLevel level, const wxChar *szString, time_t t);
d6b9496a
VZ
237 // default DoLogString does nothing but is not pure virtual because if
238 // you override DoLog() you might not need it at all
9e3d3318 239 virtual void DoLogString(const wxChar *szString, time_t t);
c801d85f 240
d6b9496a
VZ
241private:
242 // static variables
243 // ----------------
06db8ebd 244
d6b9496a
VZ
245 static wxLog *ms_pLogger; // currently active log sink
246 static bool ms_doLog; // FALSE => all logging disabled
247 static bool ms_bAutoCreate; // create new log targets on demand?
fd7718b2 248 static bool ms_bVerbose; // FALSE => ignore LogInfo messages
fe7b1156 249
edc73852
RD
250 static wxLogLevel ms_logLevel; // limit logging to levels <= ms_logLevel
251
2ed3265e
VZ
252 static size_t ms_suspendCount; // if positive, logs are not flushed
253
d2e1ef19
VZ
254 // format string for strftime(), if NULL, time stamping log messages is
255 // disabled
256 static const wxChar *ms_timestamp;
257
d6b9496a
VZ
258 static wxTraceMask ms_ulTraceMask; // controls wxLogTrace behaviour
259 static wxArrayString ms_aTraceMasks; // more powerful filter for wxLogTrace
c801d85f
KB
260};
261
262// ----------------------------------------------------------------------------
263// "trivial" derivations of wxLog
264// ----------------------------------------------------------------------------
265
266// log everything to a "FILE *", stderr by default
bddd7a8d 267class WXDLLIMPEXP_BASE wxLogStderr : public wxLog
c801d85f 268{
be52b341 269 DECLARE_NO_COPY_CLASS(wxLogStderr)
64bea2bf 270
c801d85f 271public:
d6b9496a
VZ
272 // redirect log output to a FILE
273 wxLogStderr(FILE *fp = (FILE *) NULL);
c801d85f 274
03147cd0 275protected:
d6b9496a 276 // implement sink function
9e3d3318 277 virtual void DoLogString(const wxChar *szString, time_t t);
c801d85f 278
d6b9496a 279 FILE *m_fp;
c801d85f
KB
280};
281
4bf78aae 282#if wxUSE_STD_IOSTREAM
03147cd0 283
c801d85f 284// log everything to an "ostream", cerr by default
bddd7a8d 285class WXDLLIMPEXP_BASE wxLogStream : public wxLog
c801d85f
KB
286{
287public:
d6b9496a 288 // redirect log output to an ostream
dd107c50 289 wxLogStream(wxSTD ostream *ostr = (wxSTD ostream *) NULL);
c801d85f
KB
290
291protected:
d6b9496a 292 // implement sink function
9e3d3318 293 virtual void DoLogString(const wxChar *szString, time_t t);
c801d85f 294
d6b9496a 295 // using ptr here to avoid including <iostream.h> from this file
dd107c50 296 wxSTD ostream *m_ostr;
c801d85f 297};
03147cd0
VZ
298
299#endif // wxUSE_STD_IOSTREAM
c801d85f 300
03147cd0
VZ
301// ----------------------------------------------------------------------------
302// /dev/null log target: suppress logging until this object goes out of scope
303// ----------------------------------------------------------------------------
304
305// example of usage:
306/*
307 void Foo()
308 {
309 wxFile file;
310
311 // wxFile.Open() normally complains if file can't be opened, we don't
312 // want it
313 wxLogNull logNo;
314
315 if ( !file.Open("bar") )
316 ... process error ourselves ...
317
318 // ~wxLogNull called, old log sink restored
319 }
320 */
bddd7a8d 321class WXDLLIMPEXP_BASE wxLogNull
03147cd0
VZ
322{
323public:
be52b341
GD
324 wxLogNull() : m_flagOld(wxLog::EnableLogging(FALSE)) { }
325 ~wxLogNull() { (void)wxLog::EnableLogging(m_flagOld); }
03147cd0
VZ
326
327private:
328 bool m_flagOld; // the previous value of the wxLog::ms_doLog
329};
330
331// ----------------------------------------------------------------------------
332// chaining log target: installs itself as a log target and passes all
333// messages to the real log target given to it in the ctor but also forwards
334// them to the previously active one
335//
336// note that you don't have to call SetActiveTarget() with this class, it
337// does it itself in its ctor
338// ----------------------------------------------------------------------------
339
bddd7a8d 340class WXDLLIMPEXP_BASE wxLogChain : public wxLog
03147cd0
VZ
341{
342public:
343 wxLogChain(wxLog *logger);
8b30a4e4 344 virtual ~wxLogChain();
03147cd0
VZ
345
346 // change the new log target
347 void SetLog(wxLog *logger);
348
349 // this can be used to temporarily disable (and then reenable) passing
350 // messages to the old logger (by default we do pass them)
351 void PassMessages(bool bDoPass) { m_bPassMessages = bDoPass; }
352
353 // are we passing the messages to the previous log target?
354 bool IsPassingMessages() const { return m_bPassMessages; }
355
356 // return the previous log target (may be NULL)
357 wxLog *GetOldLog() const { return m_logOld; }
358
359 // override base class version to flush the old logger as well
360 virtual void Flush();
361
362protected:
363 // pass the chain to the old logger if needed
364 virtual void DoLog(wxLogLevel level, const wxChar *szString, time_t t);
365
366private:
367 // the current log target
368 wxLog *m_logNew;
369
370 // the previous log target
371 wxLog *m_logOld;
372
373 // do we pass the messages to the old logger?
374 bool m_bPassMessages;
22f3361e
VZ
375
376 DECLARE_NO_COPY_CLASS(wxLogChain)
03147cd0
VZ
377};
378
379// a chain log target which uses itself as the new logger
bddd7a8d 380class WXDLLIMPEXP_BASE wxLogPassThrough : public wxLogChain
03147cd0
VZ
381{
382public:
93d4c1d0 383 wxLogPassThrough();
fc7a2a60
VZ
384
385private:
386 DECLARE_NO_COPY_CLASS(wxLogPassThrough)
03147cd0
VZ
387};
388
8ca28fb7 389#if wxUSE_GUI
7e8c564c
VS
390 // include GUI log targets:
391 #include "wx/generic/logg.h"
e90c1d2a 392#endif // wxUSE_GUI
03f38c58 393
c801d85f
KB
394// ============================================================================
395// global functions
396// ============================================================================
397
398// ----------------------------------------------------------------------------
399// Log functions should be used by application instead of stdio, iostream &c
400// for log messages for easy redirection
401// ----------------------------------------------------------------------------
402
88ac883a
VZ
403// ----------------------------------------------------------------------------
404// get error code/error message from system in a portable way
405// ----------------------------------------------------------------------------
406
407// return the last system error code
bddd7a8d 408WXDLLIMPEXP_BASE unsigned long wxSysErrorCode();
c11d62a6 409
88ac883a 410// return the error message for given (or last if 0) error code
bddd7a8d 411WXDLLIMPEXP_BASE const wxChar* wxSysErrorMsg(unsigned long nErrCode = 0);
88ac883a 412
c11d62a6 413// ----------------------------------------------------------------------------
c801d85f 414// define wxLog<level>
c11d62a6 415// ----------------------------------------------------------------------------
c801d85f 416
886dd7d2 417#define DECLARE_LOG_FUNCTION(level) \
bddd7a8d 418extern void WXDLLIMPEXP_BASE wxVLog##level(const wxChar *szFormat, \
886dd7d2 419 va_list argptr); \
bddd7a8d 420extern void WXDLLIMPEXP_BASE wxLog##level(const wxChar *szFormat, \
7357f981 421 ...) ATTRIBUTE_PRINTF_1
886dd7d2
VZ
422#define DECLARE_LOG_FUNCTION2_EXP(level, arg, expdecl) \
423extern void expdecl wxVLog##level(arg, const wxChar *szFormat, \
424 va_list argptr); \
425extern void expdecl wxLog##level(arg, const wxChar *szFormat, \
7357f981 426 ...) ATTRIBUTE_PRINTF_2
886dd7d2 427#define DECLARE_LOG_FUNCTION2(level, arg) \
bddd7a8d 428 DECLARE_LOG_FUNCTION2_EXP(level, arg, WXDLLIMPEXP_BASE)
a1530845 429
88ac883a
VZ
430#else // !wxUSE_LOG
431
432// log functions do nothing at all
886dd7d2
VZ
433#define DECLARE_LOG_FUNCTION(level) \
434inline void wxVLog##level(const wxChar *szFormat, \
435 va_list argptr) { } \
436inline void wxLog##level(const wxChar *szFormat, ...) { }
437#define DECLARE_LOG_FUNCTION2(level, arg) \
438inline void wxVLog##level(arg, const wxChar *szFormat, \
439 va_list argptr) {} \
440inline void wxLog##level(arg, const wxChar *szFormat, ...) { }
88ac883a 441
e30285ab 442// Empty Class to fake wxLogNull
bddd7a8d 443class WXDLLIMPEXP_BASE wxLogNull
e30285ab
VZ
444{
445public:
886dd7d2 446 wxLogNull() { }
e30285ab
VZ
447};
448
449// Dummy macros to replace some functions.
450#define wxSysErrorCode() (unsigned long)0
451#define wxSysErrorMsg( X ) (const wxChar*)NULL
452
453// Fake symbolic trace masks... for those that are used frequently
fda7962d 454#define wxTRACE_OleCalls wxEmptyString // OLE interface calls
e30285ab 455
88ac883a 456#endif // wxUSE_LOG/!wxUSE_LOG
c801d85f 457
88ac883a
VZ
458// a generic function for all levels (level is passes as parameter)
459DECLARE_LOG_FUNCTION2(Generic, wxLogLevel level);
c801d85f 460
88ac883a
VZ
461// one function per each level
462DECLARE_LOG_FUNCTION(FatalError);
463DECLARE_LOG_FUNCTION(Error);
464DECLARE_LOG_FUNCTION(Warning);
465DECLARE_LOG_FUNCTION(Message);
466DECLARE_LOG_FUNCTION(Info);
467DECLARE_LOG_FUNCTION(Verbose);
470b7da3 468
88ac883a
VZ
469// this function sends the log message to the status line of the top level
470// application frame, if any
471DECLARE_LOG_FUNCTION(Status);
470b7da3 472
886dd7d2
VZ
473#if wxUSE_GUI
474 // this one is the same as previous except that it allows to explicitly
475 // specify the frame to which the output should go
bddd7a8d 476 DECLARE_LOG_FUNCTION2_EXP(Status, wxFrame *pFrame, WXDLLIMPEXP_CORE);
886dd7d2 477#endif // wxUSE_GUI
c801d85f 478
88ac883a
VZ
479// additional one: as wxLogError, but also logs last system call error code
480// and the corresponding error message if available
481DECLARE_LOG_FUNCTION(SysError);
c801d85f 482
88ac883a
VZ
483// and another one which also takes the error code (for those broken APIs
484// that don't set the errno (like registry APIs in Win32))
485DECLARE_LOG_FUNCTION2(SysError, long lErrCode);
486
487// debug functions do nothing in release mode
edc73852 488#if wxUSE_LOG_DEBUG
d6b9496a
VZ
489 DECLARE_LOG_FUNCTION(Debug);
490
ea44a631 491 // first kind of LogTrace is unconditional: it doesn't check the level,
d6b9496a
VZ
492 DECLARE_LOG_FUNCTION(Trace);
493
494 // this second version will only log the message if the mask had been
495 // added to the list of masks with AddTraceMask()
f6bcfd97 496 DECLARE_LOG_FUNCTION2(Trace, const wxChar *mask);
9ef3052c 497
d6b9496a
VZ
498 // the last one does nothing if all of level bits are not set
499 // in wxLog::GetActive()->GetTraceMask() - it's deprecated in favour of
500 // string identifiers
501 DECLARE_LOG_FUNCTION2(Trace, wxTraceMask mask);
9ef3052c 502#else //!debug
d6b9496a 503 // these functions do nothing in release builds
1d63fd6b 504 inline void wxVLogDebug(const wxChar *, va_list) { }
9e3d3318 505 inline void wxLogDebug(const wxChar *, ...) { }
1d63fd6b 506 inline void wxVLogTrace(const wxChar *, va_list) { }
9e3d3318 507 inline void wxLogTrace(const wxChar *, ...) { }
1d63fd6b 508 inline void wxVLogTrace(wxTraceMask, const wxChar *, va_list) { }
9e3d3318 509 inline void wxLogTrace(wxTraceMask, const wxChar *, ...) { }
1d63fd6b 510 inline void wxVLogTrace(const wxChar *, const wxChar *, va_list) { }
9e3d3318 511 inline void wxLogTrace(const wxChar *, const wxChar *, ...) { }
88ac883a 512#endif // debug/!debug
c801d85f 513
c11d62a6
VZ
514// wxLogFatalError helper: show the (fatal) error to the user in a safe way,
515// i.e. without using wxMessageBox() for example because it could crash
bddd7a8d 516void WXDLLIMPEXP_BASE
886dd7d2 517wxSafeShowMessage(const wxString& title, const wxString& text);
c11d62a6 518
88ac883a
VZ
519// ----------------------------------------------------------------------------
520// debug only logging functions: use them with API name and error code
521// ----------------------------------------------------------------------------
c801d85f 522
e90babdf 523#ifdef __WXDEBUG__
42e69d6b
VZ
524 // make life easier for people using VC++ IDE: clicking on the message
525 // will take us immediately to the place of the failed API
526#ifdef __VISUALC__
4b7f2165
VZ
527 #define wxLogApiError(api, rc) \
528 wxLogDebug(wxT("%s(%d): '%s' failed with error 0x%08lx (%s)."), \
8b94d999
VZ
529 __TFILE__, __LINE__, api, \
530 (long)rc, wxSysErrorMsg(rc))
42e69d6b 531#else // !VC++
4b7f2165 532 #define wxLogApiError(api, rc) \
18da7cf2
VZ
533 wxLogDebug(wxT("In file %s at line %d: '%s' failed with ") \
534 wxT("error 0x%08lx (%s)."), \
8b94d999
VZ
535 __TFILE__, __LINE__, api, \
536 (long)rc, wxSysErrorMsg(rc))
42e69d6b
VZ
537#endif // VC++/!VC++
538
539 #define wxLogLastError(api) wxLogApiError(api, wxSysErrorCode())
540
c801d85f 541#else //!debug
9e3d3318
OK
542 inline void wxLogApiError(const wxChar *, long) { }
543 inline void wxLogLastError(const wxChar *) { }
c801d85f
KB
544#endif //debug/!debug
545
34138703 546#endif // _WX_LOG_H_
04662def 547