Skip to content

Commit

Permalink
Remove unwanted log
Browse files Browse the repository at this point in the history
Signed-off-by: Wonjae Park <[email protected]>
  • Loading branch information
JustinWonjaePark committed Nov 2, 2023
1 parent b28f7a2 commit 04a68c3
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 04a68c3

Please sign in to comment.