Don't warn about absence of kotlin files

#KT-10401 fixed
This commit is contained in:
Alexey Tsvetkov
2016-09-29 19:48:30 +03:00
parent a474d75fe2
commit 7d657a8c58
@@ -92,7 +92,7 @@ abstract class AbstractKotlinCompile<T : CommonCompilerArguments>() : AbstractCo
logger.kotlinDebug("removed ${removed.joinToString { it.path }}")
val sources = getKotlinSources()
if (sources.isEmpty()) {
logger.warn("No Kotlin files found, skipping Kotlin compiler task")
logger.kotlinDebug { "No Kotlin files found, skipping Kotlin compiler task" }
return
}