Commit a4f3a88a000fcad61275f7fefdf5d2ea48d10232
1 parent
aae7b4c4
olevba: fix log.info to debug
Showing
1 changed file
with
2 additions
and
2 deletions
oletools/olevba.py
| ... | ... | @@ -3933,10 +3933,10 @@ def main(cmd_line_args=None): |
| 3933 | 3933 | |
| 3934 | 3934 | # with the option --reveal, make sure --deobf is also enabled: |
| 3935 | 3935 | if options.show_deobfuscated_code and not options.deobfuscate: |
| 3936 | - log.info('set --deobf because --reveal was set') | |
| 3936 | + log.debug('set --deobf because --reveal was set') | |
| 3937 | 3937 | options.deobfuscate = True |
| 3938 | 3938 | if options.output_mode == 'triage' and options.show_deobfuscated_code: |
| 3939 | - log.info('ignoring option --reveal in triage output mode') | |
| 3939 | + log.debug('ignoring option --reveal in triage output mode') | |
| 3940 | 3940 | |
| 3941 | 3941 | # gather info on all files that must be processed |
| 3942 | 3942 | # ignore directory names stored in zip files: | ... | ... |