logger.info("message: {}", key)
with similar log messages.
These calls can be non-distinguishable from each other, and this introduces difficulties to understand where a certain log message is from.
Example (for Java):
private static void request1(String text) {
log.info("Message: {}", text); //similar call
doSomething1();
}
private static void request2(int i) {
log.info("Message: {}", i); //similar call
doSomething2();
}
New in 2024.1