I want to use the registration subsystem for the Wildfly server for my application. Using some blogs on the Internet, I have added a registration profile for my application in standalone.xml.
<logging-profiles> <logging-profile name="myapp"> <size-rotating-file-handler name="SIZE" autoflush="true"> <level name="ALL"/> <file relative-to="jboss.server.log.dir" path="myapp.log"/> <append value="true"/> </size-rotating-file-handler> <logger category="com.myapp.logs" use-parent-handlers="false"> <level name="ALL"/> <handlers> <handler name="SIZE"/> </handlers> </logger> <root-logger> <level name="INFO"/> <handlers> <handler name="SIZE"/> </handlers> </root-logger> </logging-profile> </logging-profiles>
I also added a magazine profile to Manifest.mf
Manifest-Version: 1.0 Class-Path: Logging-Profile: myapp
Now application logging is working fine, but I would like to know if this can be configured from the management console itself. I tried many times, but failed. And this registration profile is not found anywhere in the management console. Am I doing something wrong here?
Note. I want application logs to be separate from server logs.
source share