mirror of
https://github.com/revanced/Apktool.git
synced 2025-05-01 22:54:24 +02:00
refactor: mark skips as "fine" to not clog output
This commit is contained in:
parent
287d4a5922
commit
f94cdc5cf3
@ -171,7 +171,7 @@ public class ARSCDecoder {
|
|||||||
int count = mIn.readInt();
|
int count = mIn.readInt();
|
||||||
|
|
||||||
for (int i = 0; i < count; i++) {
|
for (int i = 0; i < count; i++) {
|
||||||
LOGGER.info(String.format("Skipping staged alias stagedId (%h) finalId: %h", mIn.readInt(), mIn.readInt()));
|
LOGGER.fine(String.format("Skipping staged alias stagedId (%h) finalId: %h", mIn.readInt(), mIn.readInt()));
|
||||||
}
|
}
|
||||||
|
|
||||||
nextChunk();
|
nextChunk();
|
||||||
@ -182,7 +182,7 @@ public class ARSCDecoder {
|
|||||||
int count = mIn.readInt();
|
int count = mIn.readInt();
|
||||||
|
|
||||||
for (int i = 0; i < count; i++) {
|
for (int i = 0; i < count; i++) {
|
||||||
LOGGER.info(String.format("Skipping overlay (%h)", mIn.readInt()));
|
LOGGER.fine(String.format("Skipping overlay (%h)", mIn.readInt()));
|
||||||
}
|
}
|
||||||
|
|
||||||
nextChunk();
|
nextChunk();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user