Skip to content

Commit

Permalink
Lower log level from warning to info when no minification enabled
Browse files Browse the repository at this point in the history
Fixes #185
  • Loading branch information
xgouchet committed Oct 10, 2023
1 parent c73e325 commit 71fe997
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,12 @@ class DdAndroidGradlePlugin @Inject constructor(
extension: DdExtension
): Task? {
if (!variant.buildType.isMinifyEnabled) {
LOGGER.warn("Minifying disabled for variant ${variant.name}, no upload task created")
LOGGER.info("Minifying disabled for variant ${variant.name}, no upload task created")
return null
}

if (!extension.enabled) {
LOGGER.warn("Extension disabled for variant ${variant.name}, no upload task created")
LOGGER.info("Extension disabled for variant ${variant.name}, no upload task created")
return null
}

Expand Down Expand Up @@ -128,7 +128,7 @@ class DdAndroidGradlePlugin @Inject constructor(
extension: DdExtension
): Provider<DdCheckSdkDepsTask>? {
if (!extension.enabled) {
LOGGER.warn("Extension disabled for variant ${variant.name}, no sdk check task created")
LOGGER.info("Extension disabled for variant ${variant.name}, no sdk check task created")
return null
}

Expand Down

0 comments on commit 71fe997

Please sign in to comment.