The thing is I'm loading RVM in Jenkins as a function due to bash "not a login" protection. That however outputs the whole RVM configuration to my log => first 8000 lines of log are useless to me.
Is there a way to tell Jenkins CI to silence (not to log) part of the bash script?
something like this
# silence begins
echo "this should not log
# silence end
echo 'this should log'
Thank you