How to log an environment variable with each logs from Liquibase?

I am running liquibase via docker like below

docker run --rm --network=“$DOCKER_NETWORK”  \
-v “$(pwd)/changeLogs:/liquibase/changelogs”  \
-e INSTALL_MYSQL=true  \
-e ENV_VAR="env_var" \
liquibase/liquibase:4.33  \
–log-level=“$LOG_LEVEL”  \
–url=“jdbc:mysql://mysql_db:3306/mydatabase” \ 
–username=user \ 
–password=password \ 
–changeLogFile=“$CHANGELOG_FILE” \ 
update

How can I log the ENV_VAR with each logging message that Liquibase java code is generating?

Same has been asked in Stackoverflow also.

For now, I proceeded with the hack as mentioned in the below link