refactor: wrong logging. -> logger.

This commit is contained in:
Dobin Rutishauser
2025-06-10 12:36:40 +02:00
parent 4443827fcf
commit fcb40ccb6a
7 changed files with 14 additions and 14 deletions
+1 -1
View File
@@ -344,7 +344,7 @@ class SuperPe():
if string_off == None:
raise Exception("Strings not found in .rdata section, abort")
if string_off < 128:
logging.debug("weird: Strings in .rdata section at offset {} < 100".format(string_off))
logger.debug("weird: Strings in .rdata section at offset {} < 100".format(string_off))
string_off = 128
rm.add_range(section.virt_addr, section.virt_addr + string_off)