Details
Description
ThreadID gets displayed in hexadecimal. However, Visual Studio debugger displays them in decimal, making it harder to match up.
Simple modification of file src\main\cpp\loggingevent.cpp at line 200 fixes this:
Before: apr_snprintf(result, sizeof(result), "0x%.8x", threadId);
After: apr_snprintf(result, sizeof(result), "%.5d", threadId);