fix: start with uppercase in log message

This commit is contained in:
oSumAtrIX 2022-12-15 22:03:29 +01:00
parent 1a67cd81da
commit ae91b0d597
No known key found for this signature in database
GPG Key ID: A9B3094ACDB604B4
1 changed files with 2 additions and 2 deletions

View File

@ -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
}