-
Notifications
You must be signed in to change notification settings - Fork 32
fold at 240 columns instead of 80 #92
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't have any issues with this.
Can you explain to me what this does and why? |
@nstrug He is using the break at spaces option (useful) but no column width, so it breaks after the default of maximum 80 character. That is pretty narrow on any display I use and I guess most other people having to dig into the logs of a jenkins job that failed. The PR simply makes output, that went through the Example log extract folding at the default of 80
When folding at 240, one would get the more readable
|
let me chime in here. I don't think parametrizing the line break at $width makes sense. at least it's nothing a pipeline should take care of. it basically has nothing to do with the build itself. |
Why not something like: |
@nstrug PR as is fine with you or would you rather have what @ericzolf suggested? @ericzolf since the parts of the logs that do not go through |
addresses #91
but I'd like a second opinion on my choice of 240, I'd be fine with anything from 120 upwards.
Before you ask; parametrising this only makes sense once we move to a proper pipeline ;-)