Skip to content

Commit

Permalink
Increase to-jul priority from 15 to 20 (#699)
Browse files Browse the repository at this point in the history
The original 15 was blindly copied from SLF4JProvider.

It's probably better to not have them be the same, and have To-JUL's higher than SLF4j's (which in turn is higher than Core's 10).
  • Loading branch information
vorburger committed Jan 14, 2022
1 parent edcc220 commit 93124df
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@
*/
public class JULProvider extends Provider {
public JULProvider() {
super(15, "2.6.0", JULLoggerContextFactory.class, null);
super(20, "2.6.0", JULLoggerContextFactory.class, null);
}
}

0 comments on commit 93124df

Please sign in to comment.