Skip to content

Commit

Permalink
fix: start with uppercase in log message
Browse files Browse the repository at this point in the history
  • Loading branch information
oSumAtrIX committed Dec 15, 2022
1 parent 1a67cd8 commit ae91b0d
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
Expand Up @@ -24,10 +24,10 @@ fun Patcher.addPatchesFiltered(allPatches: List<Class<out Patch<Context>>>) {
val args = MainCommand.args.patchArgs?.patchingArgs!!

if (args.excludedPatches.contains(patchName)) {
logger.info("$prefix: manually excluded")
logger.info("$prefix: Manually excluded")
return@patchLoop
} else if ((!patch.include || args.defaultExclude) && !args.includedPatches.contains(patchName)) {
logger.info("$prefix: excluded by default")
logger.info("$prefix: Excluded by default")
return@patchLoop
}

Expand Down

0 comments on commit ae91b0d

Please sign in to comment.