You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public static final System.Logger logger = System.getLogger("foo.bar");
public static void debug(String fmt, Object... params) {
logger.log(System.Logger.Level.DEBUG, fmt, params);
}
even though Quarkus is built with -Dquarkus.log.min-level=TRACE and ran with -Dquarkus.log.level=TRACE -Dquarkus.log.console.level=TRACE these message are not printed out.
Expected behavior
Quarkus logs this at DEBUG level.
Actual behavior
Logs from within Quarkus systems are correctly printed but System logging is not printed anywhere.
How to Reproduce?
No response
Output of uname -a or ver
No response
Output of java -version
OpenJDK CRaC build
GraalVM version (if different from Java)
No response
Quarkus version or git rev
2.15.3.Final
Build tool (ie. output of mvnw --version or gradlew --version)
Maven
Additional information
No response
The text was updated successfully, but these errors were encountered:
Describe the bug
When JDK logs using
System.Logger
:even though Quarkus is built with
-Dquarkus.log.min-level=TRACE
and ran with-Dquarkus.log.level=TRACE -Dquarkus.log.console.level=TRACE
these message are not printed out.Expected behavior
Quarkus logs this at DEBUG level.
Actual behavior
Logs from within Quarkus systems are correctly printed but System logging is not printed anywhere.
How to Reproduce?
No response
Output of
uname -a
orver
No response
Output of
java -version
OpenJDK CRaC build
GraalVM version (if different from Java)
No response
Quarkus version or git rev
2.15.3.Final
Build tool (ie. output of
mvnw --version
orgradlew --version
)Maven
Additional information
No response
The text was updated successfully, but these errors were encountered: