Skip to content

Commit ae91b0d

Browse files
committed
fix: start with uppercase in log message
1 parent 1a67cd8 commit ae91b0d

File tree

1 file changed

+2
-2
lines changed
  • src/main/kotlin/app/revanced/utils/patcher

1 file changed

+2
-2
lines changed

src/main/kotlin/app/revanced/utils/patcher/Patcher.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ fun Patcher.addPatchesFiltered(allPatches: List<Class<out Patch<Context>>>) {
2424
val args = MainCommand.args.patchArgs?.patchingArgs!!
2525

2626
if (args.excludedPatches.contains(patchName)) {
27-
logger.info("$prefix: manually excluded")
27+
logger.info("$prefix: Manually excluded")
2828
return@patchLoop
2929
} else if ((!patch.include || args.defaultExclude) && !args.includedPatches.contains(patchName)) {
30-
logger.info("$prefix: excluded by default")
30+
logger.info("$prefix: Excluded by default")
3131
return@patchLoop
3232
}
3333

0 commit comments

Comments
 (0)