With Jenkins 2 Pipeline plugin, there\'s a useful feature allowing a quick overview of the pipeline stages and status of steps, including logging output.
However, if
Well, desperate times call for desperate measures. If you can use Blue Ocean, you can use parallel step with single execution line.
parallel( "This is my step name" : { sh 'env' } )