Skip to content

Commit 2c8a2ae

Browse files
committed
Code review
1 parent 17ee7c3 commit 2c8a2ae

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

api/src/main/java/com/inrupt/client/auth/ReactiveAuthorization.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,12 @@ public ReactiveAuthorization() {
6969
for (final AuthenticationProvider provider : loader) {
7070
for (final String scheme : provider.getSchemes()) {
7171
if (!prohibited.contains(scheme)) {
72+
LOGGER.debug("Registering {} scheme via {} authentication provider", scheme,
73+
provider.getClass().getSimpleName());
7274
registry.put(scheme, provider);
75+
} else {
76+
LOGGER.debug("Omitting {} scheme via {} authentication provider", scheme,
77+
provider.getClass().getSimpleName());
7378
}
7479
}
7580
}

0 commit comments

Comments
 (0)