refactor: sparse log should be a notice (debug only)

This commit is contained in:
Connor Tumbleson 2023-07-02 06:04:19 -04:00
parent 7a22af28af
commit e85472fee8
No known key found for this signature in database
GPG Key ID: C3CC0A201EC7DA75

View File

@ -276,7 +276,7 @@ public class ARSCDecoder {
}
if ((typeFlags & 0x01) != 0) {
LOGGER.info("Sparse type flags detected: " + mTypeSpec.getName());
LOGGER.fine("Sparse type flags detected: " + mTypeSpec.getName());
}
HashMap<Integer, Integer> entryOffsetMap = new LinkedHashMap();