Skip to content

Commit b10436d

Browse files
committed
Use debug logging instead for Azure tests (#44672)
These Azure tests have hard println statements which means we always see these messages during configuration. Yet, there are unnecessary most of the time. This commit changes them to use debug logging.
1 parent b05c61f commit b10436d

File tree

1 file changed

+3
-3
lines changed
  • plugins/repository-azure/qa/microsoft-azure-storage

1 file changed

+3
-3
lines changed

plugins/repository-azure/qa/microsoft-azure-storage/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,11 @@ integTestCluster {
6666
keystoreSetting 'azure.client.integration_test.account', azureAccount
6767

6868
if (azureKey != null && azureKey.isEmpty() == false) {
69-
println "Using access key in external service tests."
69+
logger.debug("Using access key in external service tests.")
7070
keystoreSetting 'azure.client.integration_test.key', azureKey
7171
}
7272
if (azureSasToken != null && azureSasToken.isEmpty() == false) {
73-
println "Using SAS token in external service tests."
73+
logger.debug("Using SAS token in external service tests.")
7474
keystoreSetting 'azure.client.integration_test.sas_token', azureSasToken
7575
}
7676
if (useFixture) {
@@ -80,6 +80,6 @@ integTestCluster {
8080
setting 'azure.client.integration_test.endpoint_suffix',
8181
"ignored;DefaultEndpointsProtocol=http;BlobEndpoint=http://${ -> azureStorageFixture.addressAndPort }"
8282
} else {
83-
println "Using an external service to test the repository-azure plugin"
83+
logger.debug("Using an external service to test the repository-azure plugin")
8484
}
8585
}

0 commit comments

Comments
 (0)