Fix regression from 061ac9bce3, composition log was not correct.

This commit is contained in:
Benoit Marty
2023-07-24 15:36:55 +02:00
parent 0594db1379
commit a3f28a442e

View File

@@ -30,7 +30,7 @@ fun LogCompositions(tag: String, msg: String) {
if (BuildConfig.DEBUG) {
val ref = remember { Ref(0) }
SideEffect { ref.value++ }
Timber.d(tag, "Compositions: $msg ${ref.value}")
Timber.tag(tag).d("Compositions: $msg ${ref.value}")
}
}