Skip to content

Commit 56d47d0

Browse files
committed
Reomve debugging loging statements from Azure tests
This commit removes some unneeded debugging logging statements from the Azure storage tests. Relates #44672
1 parent 3febe78 commit 56d47d0

File tree

1 file changed

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

1 file changed

+0
-4
lines changed

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

-4
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,9 @@ testClusters.integTest {
7070
plugin file(project(':plugins:repository-azure').bundlePlugin.archiveFile)
7171
keystore 'azure.client.integration_test.account', azureAccount
7272
if (azureKey != null && azureKey.isEmpty() == false) {
73-
logger.debug("Using access key in external service tests.")
7473
keystore 'azure.client.integration_test.key', azureKey
7574
}
7675
if (azureSasToken != null && azureSasToken.isEmpty() == false) {
77-
logger.debug("Using SAS token in external service tests.")
7876
keystore 'azure.client.integration_test.sas_token', azureSasToken
7977
}
8078

@@ -86,7 +84,5 @@ testClusters.integTest {
8684
{ "ignored;DefaultEndpointsProtocol=http;BlobEndpoint=http://${azureStorageFixture.addressAndPort }" }, IGNORE_VALUE
8785
String firstPartOfSeed = project.rootProject.testSeed.tokenize(':').get(0)
8886
setting 'thread_pool.repository_azure.max', (Math.abs(Long.parseUnsignedLong(firstPartOfSeed, 16) % 10) + 1).toString(), System.getProperty('ignore.tests.seed') == null ? DEFAULT : IGNORE_VALUE
89-
} else {
90-
logger.debug("Using an external service to test the repository-azure plugin")
9187
}
9288
}

0 commit comments

Comments
 (0)