logtrail icon indicating copy to clipboard operation
logtrail copied to clipboard

Collapse/expand log if too much lines

Open dqduc opened this issue 5 years ago • 2 comments

Hello,

Thanks for creating logtrail, is great and useful.

Just an enhancement if possible: sometime we have logs with lot of lines in a single message and it just occupy whole viewport. So would be good if we can have a feature to show max of 3~5 lines per message, then can expand it if needed

dqduc avatar Mar 05 '19 04:03 dqduc

this would be useful for me too. I config filebeat to join multi-line for java stacktrace, or some api resonse sometimes there are so many multi-line log, and make my chrome relly stuck, even worse the page just crash

jacinchan avatar Oct 11 '19 02:10 jacinchan

It is possible to use css temporarily like below.

` .message { width: 1500px; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; }

.message:hover { overflow: visible; white-space: normal; } `

jemijin avatar Nov 04 '19 04:11 jemijin