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
Describe the bug
The error log message "Failed to start Quarkus, attempting to start hot replacement endpoint to recover" should include the Throwable that caused it.
Describe the bug
The error log message "Failed to start Quarkus, attempting to start hot replacement endpoint to recover" should include the Throwable that caused it.
This is at this line:
quarkus/core/devmode/src/main/java/io/quarkus/dev/DevModeMain.java
Line 187 in 6ac4265
Expected behavior
Show the Throwable info on error log.
Actual behavior
Throwable instance is swallowed.
Suggestion
Just pass
t
as second parameter:log.error("Failed to start Quarkus, attempting to start hot replacement endpoint to recover",t);
The text was updated successfully, but these errors were encountered: