Replies: 2 comments 5 replies
-
I'd actually be interested in learning this too. Maybe @jamezp can help us - what is the easiest way to get a standalone (Java SE) application that uses the JBoss Logging API to actually log something? It's hard to find any documentation that is not specific to WildFly or Quarkus. |
Beta Was this translation helpful? Give feedback.
-
Ok I found everything I needed: JBoss Logging is the facade (like By default it seems to do something, but I am not sure if this is configurable and how. JBoss Log Manager can control what is logged and where (like
About the configuration file: I found this example: I simplified it (I removed what I did not understood) and I managed to enable:
And 🎉 :
|
Beta Was this translation helpful? Give feedback.
-
I am currently trying the typesafe client with
smallrye-graphql-client-implementation-vertx
instantiated from a simple main class:Source: Client.java
In Quarkus I know that there is an option to log client and response:
Is there something similar in
io.smallrye:smallrye-graphql-client-implementation-vertx
, and how can I enable this?I have tried to search for modifying log level
org.jboss.logging:jboss-logging
but the search results are pointing to changing log levels inside the JBoss app server. I was not able to understand how it can be configured programmaticallyBeta Was this translation helpful? Give feedback.
All reactions