Skip to content

Commit 861b687

Browse files
committed
Log failed refresh token response
1 parent 0fe07e2 commit 861b687

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

airbyte-integrations/connectors/source-snowflake/src/main/java/io.airbyte.integrations.source.snowflake/SnowflakeDataSourceUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ public static String getAccessTokenUsingRefreshToken(final String hostName,
123123
} else {
124124
LOGGER.error("Failed to obtain accessToken using refresh token. " + jsonResponse);
125125
throw new RuntimeException(
126-
"Failed to obtain accessToken using refresh token.");
126+
"Failed to obtain accessToken using refresh token. " + jsonResponse);
127127
}
128128
} catch (final InterruptedException e) {
129129
throw new IOException("Failed to refreshToken", e);

0 commit comments

Comments
 (0)