Skip to content

Commit

Permalink
Merge pull request #8 from fosslight/dev_versionLog
Browse files Browse the repository at this point in the history
Remove unwanted log
  • Loading branch information
soimkim authored Nov 6, 2023
2 parents 5834d76 + 04a68c3 commit 2cdce8a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/fosslight_android/android_binary_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -771,7 +771,6 @@ def main():
result_txt_file = os.path.join(python_script_dir, f"fosslight_binary_android_{now}.txt")
log_txt_file = os.path.join(python_script_dir, f"fosslight_log_android_{now}.txt")
result_excel_file = os.path.join(python_script_dir, f"fosslight_report_android_{now}.xlsx")
logger, result_log = init_log(log_txt_file, True, logging.INFO, logging.DEBUG, PKG_NAME)
remove_list_file = ""

parser = argparse.ArgumentParser(description='FOSSLight Android', prog='fosslight_android', add_help=False)
Expand Down Expand Up @@ -814,6 +813,9 @@ def main():
find_empty_path = True
if args.ignore: # Disable the function to automatically convert OSS names based on AOSP.
auto_fill_oss_name = False

logger, result_log = init_log(log_txt_file, True, logging.INFO, logging.DEBUG, PKG_NAME)

if args.packaging:
check_packaging_files(args.packaging)
return
Expand Down

0 comments on commit 2cdce8a

Please sign in to comment.