APM agent console log formatting from log4j2 configuration

Hi, is there any way format elastic apm agent console logging message? For example:

2022-03-31 15:53:38,437 [main] INFO  co.elastic.apm.agent.util.JmxUtils - Found JVM-specific OperatingSystemMXBean interface: com.sun.management.OperatingSystemMXBean

to something like this?

[2022-03-31T15:53:38,437] [main] [INFO ] [co.elastic.apm.agent.util.JmxUtils] [Found JVM-specific OperatingSystemMXBean interface: com.sun.management.OperatingSystemMXBean]

or

[2022-03-31T15:53:38,437] [INFO ] [co.elastic.apm.agent.util.JmxUtils] Found JVM-specific OperatingSystemMXBean interface: com.sun.management.OperatingSystemMXBean

Application uses log4j2 configuration with layout pattern: [%d{ISO8601}][%p ][%c] %m%n and only applies to its application logging messages.

Regarding logging configuration options: Logging configuration options | APM Java Agent Reference [master] | Elastic looks like there isn't property to determine log4j2 properties file for apm agent like e.g. -Delastic.apm.log4j2_properties_file=log4j2.xml

Is this something that is not implemented or possible to implement in the future?

Thanks.