Skip to content

Commit

Permalink
Atmosphere: change info log back to debug
Browse files Browse the repository at this point in the history
  • Loading branch information
smlpt committed Jun 24, 2024
1 parent f8d3bb1 commit 1814f15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/kotlin/graphics/scenery/primitives/Atmosphere.kt
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 1814f15

Please sign in to comment.