In the Jenkins pipeline, I am getting console logs as below.
19:09:36 -----------------------
19:09:36 my echo statements
19:09:36 -----------------------
I'd want all the information in the console logs in this pipeline execution to be without timestamps.
-----------------------
my echo statements
-----------------------
When i checked, it was recommended that the below option be used in the pipeline, however this did not help. Are there any other ways by which these logs can be disabled?
options {
timestamps {
skipPrintingTimestamps()
}
}