Skip to content

Commit

Permalink
[Fix] Change Auth method log to debug instead of info
Browse files Browse the repository at this point in the history
Signed-off-by: Ashraf Saleh <[email protected]>
  • Loading branch information
zashroof committed Oct 30, 2024
1 parent 2f08742 commit a0f9113
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,12 @@ public synchronized HeaderFactory configure(DatabricksConfig config) {
if (config.getAuthType() != null
&& !config.getAuthType().isEmpty()
&& !provider.authType().equals(config.getAuthType())) {
LOG.info(
LOG.debug(
"Ignoring {} auth, because {} is preferred", provider.authType(), config.getAuthType());
continue;
}
try {
LOG.info("Trying {} auth", provider.authType());
LOG.debug("Trying {} auth", provider.authType());
HeaderFactory headerFactory = provider.configure(config);
if (headerFactory == null) {
continue;
Expand Down

0 comments on commit a0f9113

Please sign in to comment.