Merge pull request #2900
5cc84693
easylogging: show the 'no stack trace' warning only once (ston1th)
This commit is contained in:
commit
f270382718
|
@ -14,6 +14,7 @@
|
|||
// http://muflihun.com
|
||||
//
|
||||
|
||||
#define EASYLOGGING_CC
|
||||
#include "easylogging++.h"
|
||||
|
||||
#if defined(AUTO_INITIALIZE_EASYLOGGINGPP)
|
||||
|
|
|
@ -204,12 +204,13 @@ ELPP_INTERNAL_DEBUGGING_OUT_INFO << ELPP_INTERNAL_DEBUGGING_MSG(internalInfoStre
|
|||
# define ELPP_STACKTRACE 1
|
||||
# else
|
||||
# define ELPP_STACKTRACE 0
|
||||
# ifdef EASYLOGGING_CC
|
||||
# if ELPP_COMPILER_MSVC
|
||||
# pragma message("Stack trace not available for this compiler")
|
||||
# else
|
||||
# warning "Stack trace not available for this compiler";
|
||||
# endif // ELPP_COMPILER_MSVC
|
||||
# define ELPP_STACKTRACE 0
|
||||
# endif
|
||||
# endif // ELPP_COMPILER_GCC
|
||||
#else
|
||||
# define ELPP_STACKTRACE 0
|
||||
|
|
Loading…
Reference in New Issue