mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-28 10:36:08 +00:00
log unknown action codes only when detailed logging is enabled (there are a lot of unknown action in obfuscated files)
This commit is contained in:
@@ -1792,7 +1792,9 @@ public class SWFInputStream implements AutoCloseable {
|
||||
Action r = new ActionNop();
|
||||
r.actionCode = actionCode;
|
||||
r.actionLength = actionLength;
|
||||
logger.log(Level.SEVERE, "Unknown action code: {0}", actionCode);
|
||||
if (Configuration.useDetailedLogging.get()) {
|
||||
logger.log(Level.SEVERE, "Unknown action code: {0}", actionCode);
|
||||
}
|
||||
return r;
|
||||
}
|
||||
} catch (EndOfStreamException | ArrayIndexOutOfBoundsException eos) {
|
||||
|
||||
Reference in New Issue
Block a user