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
As can be seen in class org.springframework.boot.loader.thin.ThinJarLauncher, logging is turned off several times (by calling LogUtils.setLogLevel(Level.OFF)). However it seems that logging is never turned back on. If launched application uses standard java.util.logging.Logger all messages are discarded.
As a workaround one can run jar with system property -Dthin.debug=true which restores logging level to default INFO (line 172 in class ThinJarLauncher). However I think that log level should be restored to standard Java's default (INFO) regardless of whether debug system property was used or not.
Thanks for your time and keep up the good work!
Pavel