gnodet opened a new pull request, #22222: URL: https://github.com/apache/camel/pull/22222
## Summary - Reduce logger name padding from `%-40.40c` / `%-35.35c` to `%-25.25c` across all log4j2 property files - Reduce thread name padding from `%15.15t` to `%10.10t` - Saves ~20 characters per log line, leaving more room for the actual message on narrow terminals **Before** (~100 chars before message): ``` 2024-01-15 10:30:45.123 INFO 12345 --- [ main] o.a.c.i.engine.DefaultCamelContext : Started ``` **After** (~80 chars before message): ``` 2024-01-15 10:30:45.123 INFO 12345 --- [ main] o.a.c.i.e.DefaultCamelCont : Started ``` ## Test plan - [x] Verify log output renders well on narrow (85-col) and wide terminals - [x] No functional change — only padding widths adjusted -- 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]
