Hide sensitive data from logs using quarkus distribution

Hello,

Using Keycloak v18.0.1

Prior to the keycloak quakus version distribution, we used to hide the ipadress & username from logs using this startup-script :

embed-server --server-config=standalone-ha.xml --std-out=echo 
batch
/subsystem=logging/console-handler=CONSOLE:write-attribute(name=filter-spec, value="all(substituteAll(\"(?<=ipAddress=|username=)(.*?)(?=[,\\n]|$)\",\"******\"))")
run-batch 
stop-embedded-server

The startup scripts are no longer supported, any idea how can I achieve it on Keycloak 18?
Thanks,