Skip to content

Commit ca16384

Browse files
adam-enkoqurbonzoda
authored andcommitted
Do not log KMP host messages at warning level
Constantly logging these messages at warning level is not useful. #105
1 parent f3b270e commit ca16384

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugin/main/src/kotlinx/benchmark/gradle/NativeMultiplatformTasks.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ fun Project.processNativeCompilation(target: NativeBenchmarkTarget) {
1818
val expectedHost = compilation.target.konanTarget
1919
val actualHost = HostManager.host
2020
if (expectedHost != actualHost) {
21-
project.logger.warn("Skipping benchmarks for '${target.name}' because they cannot be run on current host '$actualHost' (expected host: '$expectedHost')")
21+
project.logger.info("Skipping benchmarks for '${target.name}' because they cannot be run on current host '$actualHost' (expected host: '$expectedHost')")
2222
return
2323
}
2424

0 commit comments

Comments
 (0)