From 665253d33a84aa2c9d6237230c0ed00ce579d26b Mon Sep 17 00:00:00 2001 From: Jason Tedor Date: Mon, 22 Jul 2019 11:22:37 +0900 Subject: [PATCH] Use debug logging instead for Azure tests 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. --- .../qa/microsoft-azure-storage/build.gradle | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/repository-azure/qa/microsoft-azure-storage/build.gradle b/plugins/repository-azure/qa/microsoft-azure-storage/build.gradle index 5f96fd9dc305b..ce9b9c4854fc6 100644 --- a/plugins/repository-azure/qa/microsoft-azure-storage/build.gradle +++ b/plugins/repository-azure/qa/microsoft-azure-storage/build.gradle @@ -70,11 +70,11 @@ testClusters.integTest { plugin file(project(':plugins:repository-azure').bundlePlugin.archiveFile) keystore 'azure.client.integration_test.account', azureAccount if (azureKey != null && azureKey.isEmpty() == false) { - println "Using access key in external service tests." + logger.debug("Using access key in external service tests.") keystore 'azure.client.integration_test.key', azureKey } if (azureSasToken != null && azureSasToken.isEmpty() == false) { - println "Using SAS token in external service tests." + logger.debug("Using SAS token in external service tests.") keystore 'azure.client.integration_test.sas_token', azureSasToken } @@ -87,6 +87,6 @@ testClusters.integTest { String firstPartOfSeed = project.rootProject.testSeed.tokenize(':').get(0) setting 'thread_pool.repository_azure.max', (Math.abs(Long.parseUnsignedLong(firstPartOfSeed, 16) % 10) + 1).toString(), System.getProperty('ignore.tests.seed') == null ? DEFAULT : IGNORE_VALUE } else { - println "Using an external service to test the repository-azure plugin" + logger.debug("Using an external service to test the repository-azure plugin") } }