JBoss Logging is a logging facade library which includes support for internationalized logging by way of an annotated interface mechanism. These interfaces are designed to be used as input into build tools which generate classes that implement them, using various string translations.
Questions tagged [jboss-logging]
87 questions
0
votes
3 answers
Wildfly Logging Profile Setting ( logger.debug("test") )
I would like to create a profile for my application's logs
I need to use logger.debug() but if I put down in the standalone.xml file DEBUG I get too many lines
from to
.....................

Pako
- 339
- 2
- 8
- 20
0
votes
1 answer
Java Logging API for Detailed (and multiline) Logs
I'd like find an API that will allow me to provide a specific canonical set of information in all of my critical log points of my application. More specifically, it would be a multi-line message with the following information (in addition to the…

Dovmo
- 8,121
- 3
- 30
- 44
0
votes
0 answers
How to include config xml file in JBOSS EAP-6.4.0 classpath during war deployment?
I currently have a log4j2.xml file that is module specific stored at /opt/EAP-6.4.0/standalone/configuration/log4j2.xml. I want to include that file in the classpath of the war module when the service is being deployed. I tried hard-coding the…

TonyNguyen
- 183
- 1
- 1
- 5
0
votes
0 answers
JBoss PeriodicSizeRotatingFileHandler duplicates current log file until disk runs out of space
Sometimes we have the issue that the log rotate will duplicate the current log file until the disk runs out of space. We don't see any issues in the log files and we were wondering how this could happen as we are using the standard…

Danny Gloudemans
- 2,597
- 7
- 39
- 57
0
votes
0 answers
JBOSS Logging per deployment issue
we've an application, running in JBOSS EAP 6.4, generating a lot of logs. So we decided to give the application its own log, rotating each hour.
The application uses SFL4J, which is compatible with JBOSS Logging.
As we can't change parameters on…

Massimo Petrus
- 1,881
- 2
- 13
- 26
0
votes
0 answers
NoSuchMethodError exception thrown when deploying WAR to WebLogic
We're trying to deploy a WAR to our client's Application Server with the following characteristics:
S.O. Solaris 11.3 (SPARC)
Java: 1.8.0_77-b03
Weblogic 12.2.1
Oracle Data Base 12c (12.1.0.2)
For development I work on a machine with:
Windows…

Uriel Arvizu
- 1,876
- 6
- 37
- 97
0
votes
0 answers
Ignore a logger category in another logger category in jboss 6.4
There are 2 log file which are pointed by a category in standalone.xml using logging feature in jboss eap 6.4.
We want to skip the log of category="com.java.code.ABCD" that is printing in category="com.java.code".
Appreciate your help.
Please find…

A K M
- 11
- 9
0
votes
1 answer
Grails 3.1.5, Hibernate 5, on JBoss throw NoSuchMethodError org.jboss.logging.Logger.debugf
In Grails 3.1.5 with Hibernate5 plugin I cannot deploy to JBoss EAP 6.4.0.GA.
I get:
NoSuchMethodError: org.jboss.logging.Logger.debugf(Ljava/lang/String;I)V
I believe the issue is because Hibernate 5 has a dependency on jboss-logging 3 and even…

DAC
- 707
- 1
- 6
- 20
0
votes
1 answer
jboss-eap-6.2 logging, File size and rotation
I want to have 50 logs and the maximum size each log file can have is 11Mb,if log file name is portal.log, after portal.log reaches 11Mb, logs should be written to portal.log1 after that to portal.log2,....portal.log50 and after that to portal.log…

user3607869
- 317
- 1
- 9
- 19
0
votes
1 answer
Where to put slf4j jar file in Glassfish 4?
I am trying to use slf4j as the logging provider for jboss-logging which comes bundled with Glassfish 4.1. But no matter where I put the slf4j jar file, jboss-logging is not able to find the jar. It fails during the server start-up with the error…

Bhesh Gurung
- 50,430
- 22
- 93
- 142
0
votes
1 answer
Can i create custom server log for jboss with server cpu utilization and disk usages?
I am trying to create customized jboss server log with server cpu utilization and disk usages. Please let me know if any one has any idea about the same.
I am thinking of writting a class and calling that class in jboss-log4j.xml.
Thanks

sam
- 81
- 3
- 10