Skip to content

Commit 30db30b

Browse files
committed
Address review comments.
1 parent acff7b6 commit 30db30b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

buildSrc/src/main/java/com/google/firebase/gradle/plugins/VendorPlugin.kt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,6 @@ class JarJarTransformer(
9494
project.javaexec {
9595
main = "org.pantsbuild.jarjar.Main"
9696
classpath = project.files(jarJarProvider())
97-
// jvmArgs = listOf("-Xdebug", "-Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005")
9897
args = listOf("process", rulesFile.absolutePath, inputJar.absolutePath, outputJar.absolutePath)
9998
systemProperties = mapOf("verbose" to "true", "misplacedClassStrategy" to "FATAL")
10099
}.assertNormalExitValue()
@@ -126,7 +125,7 @@ class VendorTransform(
126125

127126
override fun transform(transformInvocation: TransformInvocation) {
128127
if (configuration.resolve().isEmpty()) {
129-
logger.info("Nothing to vendor. " +
128+
logger.warn("Nothing to vendor. " +
130129
"If you don't need vendor functionality please disable 'firebase-vendor' plugin. " +
131130
"Otherwise use the 'vendor' configuration to add dependencies you want vendored in.")
132131
for (input in transformInvocation.inputs) {

0 commit comments

Comments
 (0)