Changeset 3073


Ignore:
Timestamp:
23/01/2012 00:40:42 (4 months ago)
Author:
chris
Message:

Log exceptions with backtrace even if suppressed when log level is Log::EVERYTHING
also for exceptions with messages.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • box/trunk/lib/common/Box.h

    r3061 r3073  
    119119                std::ostringstream _box_throw_line; \ 
    120120                _box_throw_line << message; \ 
    121                 if(!HideExceptionMessageGuard::ExceptionsHidden()) \ 
     121                if(!HideExceptionMessageGuard::ExceptionsHidden() \ 
     122                        || Logging::IsEnabled(Log::EVERYTHING)) \ 
    122123                { \ 
    123124                        OPTIONAL_DO_BACKTRACE \ 
Note: See TracChangeset for help on using the changeset viewer.