Skip to content

Commit

Permalink
feat: better output for excluded patches (#77)
Browse files Browse the repository at this point in the history
  • Loading branch information
bogadana authored Jul 10, 2022
1 parent cd3ded1 commit ac7c7a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/kotlin/app/revanced/utils/patcher/Patcher.kt
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ fun Patcher.addPatchesFiltered(
val args = MainCommand.args.pArgs!!

if (excludePatches && args.excludedPatches.contains(patchName)) {
logger.info("$prefix: Explicitly excluded")
logger.info("$prefix: Explicitely excluded")
return@patch
} else if (!patch.include && !args.includedPatches.contains(patchName)) {
logger.info("$prefix: Explicitly excluded")
logger.info("$prefix: Not explicitely included")
return@patch
}

Expand Down

0 comments on commit ac7c7a9

Please sign in to comment.