You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, debugging is set by developer (using _ENABLE_DEBUG_LOGS) and doesn't identify if really 'Debugging' using gdb or IDEs.
Make this real. Use _ENABLE_DEBUG_LOGS value something like (in line 175 [https://github.com/mkhan3189/EasyLoggingPP/blob/master/easylogging%2B%2B.h#L175 ]):
#define_DEBUG_LOG (defined(_DEBUG) /* VS */ || defined(/* gdb debug macro */)) && (defined(_ENABLE_DEBUG_LOGS) && !defined(_DISABLE_DEBUG_LOGS)) /* for enable */
The text was updated successfully, but these errors were encountered:
Currently, debugging is set by developer (using _ENABLE_DEBUG_LOGS) and doesn't identify if really 'Debugging' using gdb or IDEs.
Make this real. Use _ENABLE_DEBUG_LOGS value something like (in line 175 [https://github.com/mkhan3189/EasyLoggingPP/blob/master/easylogging%2B%2B.h#L175 ]):
The text was updated successfully, but these errors were encountered: