Advanced gitlab job logs

Hi I have the following problem. I am running the same code on two projects. But I get logs in a different format. Where can this be configured?


image

Hi @Mikerar
you have Bash xtrace enabled in the first screenshot.
If the code is the same, it might be that the used images are different and one has different entrypoint like bash -x or it is overridden in .gitlab-ci.yml.
Maybe you even have set -x or set -o xtrace somewhere.

Thank you so much. I don’t know why my output is different, but set -x in before_script solved my problem