gnodet commented on PR #22222: URL: https://github.com/apache/camel/pull/22222#issuecomment-4118722502
## Rendering details — _Claude Code on behalf of Guillaume Nodet_ ### Log output on 85-column terminal **Before** (logger `%-40.40c`, thread `%15.15t` — message wraps to next line): ``` BEFORE: log output on 85-column terminal (%-40.40c logger, %15.15t thread) ───────────────────────────────────────────────────────────────────────────────────── 2026-03-24 10:30:45.123 INFO 12345 --- [ main] o.a.c.i.engine.DefaultCamel Context : Apache Camel 4.19.0 is starting 2026-03-24 10:30:45.456 INFO 12345 --- [ main] o.a.c.i.e.AbstractCamelCont ext : Routes startup (started:3) 2026-03-24 10:30:45.789 INFO 12345 --- [ main] o.a.c.i.e.DefaultCamelConte xt : Apache Camel 4.19.0 (my-app) started in 1s234ms (build:156ms init:423 ms start:655ms) 2026-03-24 10:30:46.012 INFO 12345 --- [ kafka-consumer] o.a.c.c.kafka.KafkaConsume r : Subscribing to topic my-events ``` **After** (logger `%-25.25c`, thread `%10.10t` — more message visible on first line): ``` AFTER: log output on 85-column terminal (%-25.25c logger, %10.10t thread) ───────────────────────────────────────────────────────────────────────────────────── 2026-03-24 10:30:45.123 INFO 12345 --- [ main] o.a.c.i.e.DefaultCamelCont : Apa che Camel 4.19.0 is starting 2026-03-24 10:30:45.456 INFO 12345 --- [ main] o.a.c.i.e.AbstractCamelCon : Rou tes startup (started:3) 2026-03-24 10:30:45.789 INFO 12345 --- [ main] o.a.c.i.e.DefaultCamelCont : Apa che Camel 4.19.0 (my-app) started in 1s234ms (build:156ms init:423ms start:655ms) 2026-03-24 10:30:46.012 INFO 12345 --- [kafka-cons] o.a.c.c.kafka.KafkaConsume : Sub scribing to topic my-events ``` The compact format saves ~20 characters per line by reducing: - Logger name padding: 40 → 25 chars (color) / 35 → 25 chars (no-color) - Thread name padding: 15 → 10 chars -- 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]
