Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,8 @@ private int priorityToLevelInt(Priority p) {
case Priority.FATAL_INT:
return LocationAwareLogger.ERROR_INT;
default:
throw new IllegalStateException("Unknown Priority " + p);
slf4jLogger.warn("Unknown Priority " + p);
return LocationAwareLogger.TRACE_INT;
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Original JIRA suggests DEBUG level. TRACE will be visible everywhere. So feel free to change the corrected logging level.

}
}

Expand Down