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