orpiske commented on code in PR #7392: URL: https://github.com/apache/camel/pull/7392#discussion_r847025018
########## core/camel-core-reifier/src/main/java/org/apache/camel/reifier/ResumableReifier.java: ########## @@ -47,6 +49,17 @@ protected ResumeStrategy resolveResumeStrategy() { String ref = parseString(definition.getResumeStrategy()); strategy = mandatoryLookup(ref, ResumeStrategy.class); } + return strategy; } + + protected LoggingLevel resolveLoggingLevel() { + LoggingLevel loggingLevel = parse(LoggingLevel.class, definition.getLoggingLevel()); + + if (loggingLevel == null) { + loggingLevel = LoggingLevel.WARN; Review Comment: Ahh, good catch. I think we can default to ERROR. -- 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...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org