From 4c857ea9656d8de9a8613a52ceb5873ae6d5c90e Mon Sep 17 00:00:00 2001 From: "stu126940@mail.uni-kiel.de" <stu126940@mail.uni-kiel.de> Date: Thu, 22 Apr 2021 17:06:23 +0200 Subject: [PATCH] enhance logging --- .../theodolite/benchmark/KubernetesBenchmarkDeployment.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/theodolite-quarkus/src/main/kotlin/theodolite/benchmark/KubernetesBenchmarkDeployment.kt b/theodolite-quarkus/src/main/kotlin/theodolite/benchmark/KubernetesBenchmarkDeployment.kt index 3d082a13c..7d1c3f4ba 100644 --- a/theodolite-quarkus/src/main/kotlin/theodolite/benchmark/KubernetesBenchmarkDeployment.kt +++ b/theodolite-quarkus/src/main/kotlin/theodolite/benchmark/KubernetesBenchmarkDeployment.kt @@ -45,7 +45,7 @@ class KubernetesBenchmarkDeployment( .map { NewTopic(it.name, it.numPartitions, it.replicationFactor) } kafkaController.createTopics(kafkaTopics) appResources.forEach { kubernetesManager.deploy(it) } - logger.info { "Wait ${this.loadGenerationDelay} seconds before starting the workload generator." } + logger.info { "Wait ${this.loadGenerationDelay} seconds before starting the load generator." } Thread.sleep(Duration.ofSeconds(this.loadGenerationDelay).toMillis()) loadGenResources.forEach { kubernetesManager.deploy(it) } } -- GitLab