Change from basic mode to HPEL logging and tracing
To use the dmgr console to switch to HPEL mode, select...Troubleshooting | Logs and trace | servername | Switch to HPEL Mode
To use wsadmin scripting...
### Get reference to the HighPerformanceExtensibleLogging configuration object.
HPELService = AdminConfig.getid("/Cell:myCell/Node:myNode/Server:myServer/HighPerformanceExtensibleLogging:/")
### Set the HighPerformanceExtensibleLogging enable attribute to true.
AdminConfig.modify(HPELService, "[[enable true]]")
### Get reference to the RASLoggingService object.
RASLogging = AdminConfig.getid("/Cell:myCell/Node:myNode/Server:myServer/RASLoggingService:/")
### Set the RASLoggingService enable attribute to false.
AdminConfig.modify(RASLogging, "[[enable false]]")
### Save the configuration.
AdminConfig.save()