@@ -83,7 +83,6 @@ if (GradleVersion.current() < GradleVersion.version('6.0')) {
83
83
}
84
84
if (! scanPluginComponent) {
85
85
if (enableGradleEnterprise) {
86
- logger. quiet(" Applying $BUILD_SCAN_PLUGIN_CLASS via init script" )
87
86
pluginManager. apply(initscript. classLoader. loadClass(BUILD_SCAN_PLUGIN_CLASS ))
88
87
} else {
89
88
throw new IllegalStateException (" The com.gradle.build-scan plugin is missing from the project.\n " +
@@ -97,7 +96,6 @@ if (GradleVersion.current() < GradleVersion.version('6.0')) {
97
96
}
98
97
if (! ccudPluginComponent) {
99
98
if (enableGradleEnterprise) {
100
- logger. quiet(" Applying $CCUD_PLUGIN_CLASS via init script" )
101
99
pluginManager. apply(initscript. classLoader. loadClass(CCUD_PLUGIN_CLASS ))
102
100
} else {
103
101
logWarningMissingCommonCustomUserDataGradlePlugin()
@@ -119,7 +117,6 @@ if (GradleVersion.current() < GradleVersion.version('6.0')) {
119
117
gradle. settingsEvaluated { settings ->
120
118
if (! settings. pluginManager. hasPlugin(GRADLE_ENTERPRISE_PLUGIN_ID )) {
121
119
if (enableGradleEnterprise) {
122
- logger. quiet(" Applying $GRADLE_ENTERPRISE_PLUGIN_CLASS via init script" )
123
120
settings. pluginManager. apply(initscript. classLoader. loadClass(GRADLE_ENTERPRISE_PLUGIN_CLASS ))
124
121
} else {
125
122
throw new IllegalStateException (" The com.gradle.enterprise plugin is missing from the project.\n " +
@@ -129,7 +126,6 @@ if (GradleVersion.current() < GradleVersion.version('6.0')) {
129
126
}
130
127
if (! settings. pluginManager. hasPlugin(CCUD_PLUGIN_ID )) {
131
128
if (enableGradleEnterprise) {
132
- logger. quiet(" Applying $CCUD_PLUGIN_CLASS via init script" )
133
129
settings. pluginManager. apply(initscript. classLoader. loadClass(CCUD_PLUGIN_CLASS ))
134
130
} else {
135
131
logWarningMissingCommonCustomUserDataGradlePlugin()
0 commit comments