Replies: 6 comments 5 replies
-
Beta Was this translation helpful? Give feedback.
-
Any chance you could prepare a small Maven reproducer? |
Beta Was this translation helpful? Give feedback.
-
I tried to create a minimal reproducer but the error shows up in production mode as excepted. From some more debugging I discovered the following: The working reproducer fails in a different way than my actual project. The reproducer fails on
The actual application fails one line earlier in
|
Beta Was this translation helpful? Give feedback.
-
cc @radcortez... maybe there's a problem assembling the mappings? |
Beta Was this translation helpful? Give feedback.
-
Starting from 3.18, errors caused by static init config were not being reported correctly in the console when running in production mode. |
Beta Was this translation helpful? Give feedback.
-
Separate but related discussion: It seems we are setting up a logger for static init errors, but we use The issue here is that you get inconsistent output depending on where the errors occurs: Static Init
Runtime
The only difference in the application is the config being static init or runtime. Maybe we need to revisit this? |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
After updating from Quarkus 3.15.1 to Quarkus 3.20.1 I have observed a strange behavior: In the case of a wrong configuration of my application the logger no longer prints the log message as it did before, but the application just terminates.
I debugged into the Quarkus code and ended up in the
io.quarkus.bootstrap.logging.QuarkusDelayedHandler
which adds the message to it's queue, but apparently never gets activated, so the queued messages do not get published.Did anyone run into the same problem? Downgrading to 3.15.1 seems to fix the issue.
Beta Was this translation helpful? Give feedback.
All reactions