File tree 1 file changed +2
-2
lines changed
src/main/kotlin/app/revanced/utils/patcher
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ fun Patcher.addPatchesFiltered(allPatches: List<Class<out Patch<Context>>>) {
41
41
if (compatiblePackages == null ) logger.warn(" $prefix : Missing compatibility annotation. Continuing." )
42
42
else {
43
43
if (! compatiblePackages.any { it.name == packageName }) {
44
- logger.warn (" $prefix : incompatible with $packageName . This patch is only compatible with ${
44
+ logger.trace (" $prefix : Incompatible with $packageName . This patch is only compatible with ${
45
45
compatiblePackages.joinToString(
46
46
" , "
47
47
) { it.name }
@@ -53,7 +53,7 @@ fun Patcher.addPatchesFiltered(allPatches: List<Class<out Patch<Context>>>) {
53
53
val compatibleWith = compatiblePackages.joinToString(" ;" ) { _package ->
54
54
" ${_package .name} : ${_package .versions.joinToString(" , " )} "
55
55
}
56
- logger.warn(" $prefix : incompatible with version $packageVersion . This patch is only compatible with version $compatibleWith " )
56
+ logger.warn(" $prefix : Incompatible with version $packageVersion . This patch is only compatible with version $compatibleWith " )
57
57
return @patchLoop
58
58
}
59
59
}
You can’t perform that action at this time.
0 commit comments