Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign up#1929: Protect logging debug calls with isDebugEnabled() #1930
Conversation
Description: Protect against potential performance degradation from debug logging by utilizing the logging libraries isDebugEnabled() check directly. Changes: * Protected all Logger.debug(...) calls with Logger.isDebugEnabled() Unit Tests: * N/A
|
I am happy with that. @bbakerman opinion? |
|
Thanks @andimarek . I've resolved the conflicts. Hopefully I did it correctly but let me know if there are any issues. |
|
@bbakerman checking in to see your take on this PR? I've resolved the conflicts per @andimarek request |
|
Thanks for this PR |
Description:
Protect against potential performance degradation from debug logging by
utilizing the logging libraries isDebugEnabled() check directly.
Changes:
Unit Tests: