Liquibase capability to export execution logs

I am using liquibase to deploy DDLs Gitlab to Server. But I am not able to see where the logs for what got executed in the SQL script. I can just view if the file got executed and if any error occurs. Is it possible to get the logs for SQL file execution as well?

Add the sql-log-level parameter to your Liquibase execution. For example, I use this with the CLI to see all of the executed sql:

--sql-log-level=INFO

I am using Liquibase in a CI/CD pipeline and variables are passed through a .gitlab-ci.yml file. Then what would I do?