Skip to content

Commit

Permalink
Merge pull request #52 from chkp-eyalit/code-cleanup
Browse files Browse the repository at this point in the history
[cleanup] No need for debug log
  • Loading branch information
chkp-eyalit authored Aug 17, 2020
2 parents 090894b + 32ae36d commit c4e4b1e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/thumbs_up/thumbs_up_ELF.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ def analysisStart(analyzer, scs, sds):
def main():
"""Start Thumbs Up IDA plugin - ELF version."""
# Init the logger
logger = Logger("Thumbs Up Logger", [("thumbs_up.log", "w", logging.DEBUG)], use_stdout=False, min_log_level=logging.INFO)
logger = Logger("Thumbs Up Logger", [("thumbs_up.log", "w", logging.INFO)], use_stdout=False, min_log_level=logging.INFO)
logger.linkHandler(IdaLogHandler())
# Locate the segments
code_segments = [sc for sc in sark.segments() if sc.type == 2]
Expand Down
2 changes: 1 addition & 1 deletion src/thumbs_up/thumbs_up_firmware.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ def analysisStart(analyzer, scs, sds):
def main():
"""Start Thumbs Up IDA plugin - Firmware version."""
# Init the logger
logger = Logger("Thumbs Up Logger", [("thumbs_up.log", "w", logging.DEBUG)], use_stdout=False, min_log_level=logging.INFO)
logger = Logger("Thumbs Up Logger", [("thumbs_up.log", "w", logging.INFO)], use_stdout=False, min_log_level=logging.INFO)
logger.linkHandler(IdaLogHandler())
# Locate the segments
code_segments = [sc for sc in sark.segments() if sc.type == 2]
Expand Down

0 comments on commit c4e4b1e

Please sign in to comment.