RockteMQ-AI commented on issue #1555:
URL: 
https://github.com/apache/rocketmq-dashboard/issues/1555#issuecomment-5248869037

   **Issue Evaluation**
   
   Category: `bug` | Status: **Confirmed**
   
   The reported issue is valid. The System alert page filters INFO-level logs 
using `level.toLowerCase().equals("info")`, but `String.toLowerCase()` is 
locale-dependent. In the Turkish locale, `"INFO".toLowerCase()` produces 
`"ıNFO"` (with a dotless i), which does not match `"info"`.
   
   **Root Cause:** Use of locale-sensitive `toLowerCase()` instead of 
`toLowerCase(Locale.ROOT)` or case-insensitive comparison.
   
   **Severity:** Low — affects INFO log visibility only in specific locales.
   
   An automated fix proposal can be generated. Reply `/approve` to proceed with 
PR generation.
   
   ---
   *Automated evaluation by github-manager*
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to