refactor: mark skips as "fine" to not clog output

This commit is contained in:
Connor Tumbleson 2022-07-10 07:38:05 -04:00
parent 287d4a5922
commit f94cdc5cf3
No known key found for this signature in database
GPG Key ID: BC12D5F3264560C1

View File

@ -171,7 +171,7 @@ public class ARSCDecoder {
int count = mIn.readInt();
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();
@ -182,7 +182,7 @@ public class ARSCDecoder {
int count = mIn.readInt();
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();