ByteYue commented on code in PR #16107: URL: https://github.com/apache/doris/pull/16107#discussion_r1089592796
########## fe/fe-core/src/main/java/org/apache/doris/persist/EditLog.java: ########## @@ -994,9 +994,10 @@ public static void loadJournal(Env env, JournalEntity journal) { * log a warning here to debug when happens. This could happen to other meta * like DB. */ - LOG.warn("[INCONSISTENT META] replay failed {}: {}", journal, e.getMessage(), e); + LOG.warn("[INCONSISTENT META] replay failed {}: {}", journal, e.getMessage()); } catch (Exception e) { - LOG.error("Operation Type {}", opCode, e); + LOG.error("Operation Type {}: {}", opCode, e.getMessage()); + e.printStackTrace(); Review Comment: > > > > @ByteYue could you please submit a PR to add `-XX:-OmitStackTraceInFastThrow`? I think this is necessary OK, on my way. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org