This message was deleted.
# kotlin-dsl
s
This message was deleted.
🧵 1
v
Please do not split topics across several threads. This makes following the conversation in the threads view very hard as the context of the other messages is missing. If you have additional information either edit the original message or post to its thread. Regarding the problem,
i guess i need to do something other than import it
No, just
import org.gradle.api.tasks.testing.logging.TestLogEvent
should be fine. Seems that class is not part of the default imports. Btw., you should use
tasks.withType<...>().configureEach { ... }
instead, to not disturbe task configuration avoidance.