I know that the question is how to configure detailed exceptions in Mule Studio, but if you want to configure it directly on the Mule ESB server, you can add wrapper.java.additional.n entries
to the shell . conf in the / conf directory in the Mule installation directory. This wrapper.conf file contains all the parameters sent to Mule during startup:
i.e. wrapper.java.additional.6=-Dmule.verbose.exceptions=true
Just make sure the index of the wrapper.java.additional parameter . not used for another.
To pass arguments to the command line by adding the -M switch.
i.e. MULE_HOME/bin/mule -M-Dmule.verbose.exceptions=true
To deploy Anypoint Studio:
Right-click on the root of the project in Studio, select "Run As" → "Run Configuration" → "Argument", add arguments to the VM arguments window,
ie -XX:PermSize=128M -XX:MaxPermSize=256M -Dmule.verbose.exceptions=true
To run Mule as a Maven application:
You can pass a command line argument as
ie mvn package -Dmule.verbose.exceptions=true
To deploy Cloudhub:
You can pass a command line argument by adding them as “Properties” in the “Deployment” → “Settings” → “Properties” section
source share