Skip to content

Commit a0f9113

Browse files
committed
[Fix] Change Auth method log to debug instead of info
Signed-off-by: Ashraf Saleh <a.saleh@celonis.com>
1 parent 2f08742 commit a0f9113

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

databricks-sdk-java/src/main/java/com/databricks/sdk/core/DefaultCredentialsProvider.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,12 @@ public synchronized HeaderFactory configure(DatabricksConfig config) {
5858
if (config.getAuthType() != null
5959
&& !config.getAuthType().isEmpty()
6060
&& !provider.authType().equals(config.getAuthType())) {
61-
LOG.info(
61+
LOG.debug(
6262
"Ignoring {} auth, because {} is preferred", provider.authType(), config.getAuthType());
6363
continue;
6464
}
6565
try {
66-
LOG.info("Trying {} auth", provider.authType());
66+
LOG.debug("Trying {} auth", provider.authType());
6767
HeaderFactory headerFactory = provider.configure(config);
6868
if (headerFactory == null) {
6969
continue;

0 commit comments

Comments
 (0)