How to configure linebreaks? #1287
Replies: 3 comments 1 reply
-
|
It is not currently possible. There was a feature for this that was almost implemented, but it ended up being too complicated. I will have to simplify it first. I plan to finish the feature someday, but for now, I have prioritized refactoring the internal model, which I hope to finish in a few months. After that, I will probably return to this. In the meantime, I will try to rebase the feature branch. Hopefully, that won't take too long. |
Beta Was this translation helpful? Give feedback.
-
|
The feature branch in #320 has been rebased and is ready for you to try. However, I highly recommend looking into the hide feature (using |
Beta Was this translation helpful? Give feedback.
-
|
Try |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Short question, instead of overly long parsed lines i would like to see linebreaks.
Example:
Currently it is like this:
[WRN] Failed to export TraceRequestMarshalers. The request could not be executed. Full error message: Connection refused: otel-collector/10.98.241.187:4317 › timestamp=2025-12-09T03:01:54.120436443Z sequence=1317 loggerClassName=org.jboss.logmanager.Logger loggerName=io.quarkus.opentelemetry.runtime.exporter.otlp.sender.VertxGrpcSender threadName=vert.x-eventloop-thread-1 threadId=29 ndc="" hostName=qf4m9 processName=/usr/lib/jvm/java-21-openjdk-21.0.7.0.6-1.el8.x86_64/bin/java processId=1
I want to have it like this:
[WRN] Failed to export TraceRequestMarshalers. The request could not be executed. Full error message: Connection refused: otel-collector/10.98.241.187:4317
[WRN] timestamp=2025-12-09T03:01:54.120436443Z sequence=1317
[WRN] loggerClassName=org.jboss.logmanager.Logger
[WRN] loggerName=io.quarkus.opentelemetry.runtime.exporter.otlp.sender.VertxGrpcSender threadName=vert.x-eventloop-thread-1
[WRN] threadId=29 ndc=""
[WRN] hostName=qf4m9
[WRN] processName=/usr/lib/jvm/java-21-openjdk-21.0.7.0.6-1.el8.x86_64/bin/java processId=1
or similar.
thats way more readable in large logs.
How do I achieve this?
Beta Was this translation helpful? Give feedback.
All reactions