File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
plugins/dataframe-gradle-plugin/src/main/kotlin/org/jetbrains/dataframe/gradle Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,8 @@ import org.gradle.api.Plugin
4
4
import org.gradle.api.Project
5
5
import org.gradle.api.Task
6
6
import org.gradle.api.file.FileCollection
7
+ import org.gradle.api.logging.LogLevel
8
+ import org.gradle.internal.logging.services.DefaultLoggingManager
7
9
import org.gradle.kotlin.dsl.create
8
10
import org.gradle.kotlin.dsl.withType
9
11
import org.jetbrains.kotlin.gradle.dsl.ExplicitApiMode
@@ -103,6 +105,7 @@ class SchemaGeneratorPlugin : Plugin<Project> {
103
105
val delimiters = schema.withNormalizationBy ? : extension.withNormalizationBy ? : setOf (' \t ' , ' ' , ' _' )
104
106
105
107
return target.tasks.create(" generateDataFrame${interfaceName} " , GenerateDataSchemaTask ::class .java) {
108
+ (logging as ? DefaultLoggingManager )?.setLevelInternal(LogLevel .QUIET )
106
109
group = GROUP
107
110
data.set(schema.data)
108
111
this .interfaceName.set(interfaceName)
You can’t perform that action at this time.
0 commit comments