refactor: support current position during chunk verbose output (#3395)

This commit is contained in:
Connor Tumbleson 2023-10-10 21:23:05 -04:00 committed by GitHub
parent 29b8430b00
commit 199780103c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -72,7 +72,8 @@ public class ARSCDecoder {
nextChunk();
LOGGER.fine(String.format(
"Chunk #%d start: type=0x%04x chunkSize=0x%08x", chunkNumber++, mHeader.type, mHeader.chunkSize
"Chunk #%d start=0x%08x type=0x%04x chunkSize=0x%08x",
chunkNumber++, mIn.position(), mHeader.type, mHeader.chunkSize
));
switch (mHeader.type) {