diff options
author | vanhauser-thc <vh@thc.org> | 2023-05-21 14:49:24 +0200 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2023-05-21 14:49:24 +0200 |
commit | 1416fea1604a19408554678d7c9fb35b67da302b (patch) | |
tree | 827af890dee7336fc9ef95ee43d0bf0ee5fd5a55 /custom_mutators/aflpp_tritondse/aflpp_tritondse.py | |
parent | d4085314c1c1d4e8bbe4159216f8cb83e0804ea7 (diff) | |
download | afl++-1416fea1604a19408554678d7c9fb35b67da302b.tar.gz |
cleaner tritondse
Diffstat (limited to 'custom_mutators/aflpp_tritondse/aflpp_tritondse.py')
-rw-r--r-- | custom_mutators/aflpp_tritondse/aflpp_tritondse.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/custom_mutators/aflpp_tritondse/aflpp_tritondse.py b/custom_mutators/aflpp_tritondse/aflpp_tritondse.py index cef28f34..58b506b6 100644 --- a/custom_mutators/aflpp_tritondse/aflpp_tritondse.py +++ b/custom_mutators/aflpp_tritondse/aflpp_tritondse.py @@ -120,6 +120,10 @@ def init(seed): is_debug = True except KeyError: pass + if is_debug: + logging.basicConfig(level=logging.WARNING) + else: + logging.basicConfig(level=logging.CRITICAL) try: foo = os.environ['AFL_CUSTOM_INFO_OUT'] out_path = foo + '/../tritondse/queue' |