From 1814f15ffa2e0c18ccd95bcfba80bc94cc2d59fb Mon Sep 17 00:00:00 2001 From: Samuel Pantze <83579186+smlpt@users.noreply.github.com> Date: Fri, 21 Jun 2024 14:40:12 +0200 Subject: [PATCH] Atmosphere: change info log back to debug --- src/main/kotlin/graphics/scenery/primitives/Atmosphere.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/graphics/scenery/primitives/Atmosphere.kt b/src/main/kotlin/graphics/scenery/primitives/Atmosphere.kt index a1126e8de..505174e26 100644 --- a/src/main/kotlin/graphics/scenery/primitives/Atmosphere.kt +++ b/src/main/kotlin/graphics/scenery/primitives/Atmosphere.kt @@ -46,7 +46,7 @@ open class Atmosphere( // Coroutine job for updating the sun direction private var job = CoroutineScope(Dispatchers.Default).launch(start = CoroutineStart.LAZY) { - logger.info("Launched sun updating job") + logger.debug("Launched sun updating job") while (this.coroutineContext.isActive) { if (isSunAnimated) { setSunPositionFromTime()