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
2
votes
1 answer
JBOSS EAP 7.2 wraps STDOUT and STDERR messages
This question has been asked few times before and there are some answers but none of them are suitable for the requirement that I have because the answers are directed towards either console appender or File appender.
Formatter config of both these…

Sachin
- 21
- 3
2
votes
0 answers
Hibernate5 with wildfly8 (and jboss-logging)
My Problem:
Hibernate-5.0.12-Final uses Jboss-Logging-3.3.1.Final but wildfly8 supplies jboss-logging-3.1.4.GA. Using 3.1.4.GA with Hibernate5 leads to a NoSuchMethodException.
I'm deploying a war including Hibernate-5.0.12-Final AND…

cakl
- 390
- 1
- 3
- 13
2
votes
0 answers
JBoss Logging ignores "org.jboss.logging.provider" system property
I'm trying to set jboss-logging (3.1.0.GA) to use log4j (1.2.17) through the system property -Dorg.jboss.logging.provider=log4j but it's not working, it always use jboss logger (jboss-7.2.0).

Marcus Henrique
- 762
- 1
- 5
- 15
2
votes
1 answer
size of boot.log file in jboss 6.x get out of control
I am using jboss-6.1.0.Final, when I start my server, log file(boot.log) size getting increased and increased its 16GB first time.
I stop my application server and again start but issue still persist....! and size of file is 20GB and again 16GB.
I…

Hitesh Ghuge
- 793
- 2
- 10
- 39
2
votes
1 answer
Adding SMTP log handler in Wildly 8.1
I have been through lot of WildFly documentation in past day and so far I have failed to understand how a SMTP Handler could be added to WildFly logging sybsystem. This was very easy when JBoss used log4j but now there are hardly any documentation…

Salman A. Kagzi
- 3,833
- 13
- 45
- 64
2
votes
0 answers
slf4j and log4j configuration not working
I can't get my configurations for logging with slf4j to work..
The error log looks like this
INFO: visiting unvisited references
SEVERE: log4j:ERROR A "org.apache.log4j.ConsoleAppender" object is not assignable to a "org.apache.log4j.Appender"…

S.Serem
- 101
- 2
- 12
2
votes
0 answers
How do I get a list of configured loggers using Jboss LogManager with SLF4J?
I am using JBoss EAP6.0 with SLF4J as my logging facade and jboss logmanager as the backend logging implementation. Logging statements are being displayed but I cannot get a list of configured loggers using the org.jboss.logmanager or using the…

user2843559
- 21
- 1
2
votes
3 answers
Hibernate 4.x Logging Configuration
I'm trying to find somthing about Hibernate 4.x logging configuration using jboss-logging, not log4j. Can anybody helps me? I need to disable info logging...

Anatoly
- 1,551
- 4
- 21
- 40
1
vote
1 answer
How to get Vert.x logs from Quarkus?
I'm trying to debug some low-level issues with various Vertx components in my Quarkus application and it would be helpful to have the Vert logs to do that (e.g. io.vertx.core). I assume it's something simple like this:
$ ./mvnw quarkus:dev…

Charlie
- 2,004
- 6
- 20
- 40
1
vote
1 answer
Structured logging with custom attributes
Is there a way to do structured logging in JSON format with additional custom attributes per logging event using jboss-logging? I'm basically looking for something to replace logstash-logback-encoder's StructuredArguments.

pazustep
- 441
- 4
- 9
1
vote
0 answers
hide sensitive log from keycloak quarkus distribution
Prior to the keycloak quakus version distribution, we were hiding the ipadress & username from logs using this startup-script :
embed-server --server-config=standalone-ha.xml --std-out=echo…

mazenaissa
- 158
- 10
1
vote
1 answer
Async logging is not reporting crashes
I have a Quarkus application and enabled asynchronous logging:
quarkus.log.async=true
However, if there is a crash on startup which kills the process, the log is not output. This is quite an issue as the worse the problem the more likely I have…

mangusbrother
- 3,988
- 11
- 51
- 103
1
vote
1 answer
ActiveMQ Artemis logfile name
I'm trying to modify the name of the logfile that is created by Artemis to include the hostname.
In the logging.properties under the broker instance, I've the below defined.
# File handler…

SpartanElite
- 624
- 4
- 13
1
vote
0 answers
Masking passwords in Quarkus with default JBoss logger
In a Quarkus application i do some http calls where username and password are in the URL as query parameters (3rd party, I can't change this). The problem is, that the JBoss logger in DEBUG mode prints the call to the logfile and/or console with…

PhiWu
- 11
- 2
1
vote
1 answer
Quarkus logging with Datadog
In Quarkus, the default logging library is JBoss and using the quarkus-logging-json allows you to encode your logs as JSON.
However, Datadog integration requires custom fields such as service, dd.span_id and dd.trace_id to have the logs associated…

codeninja55
- 49
- 5