Activate executor debug logging with verbosity=2 (#310)

Currently, we no verbosity level do we activate debug level logging
from the executor, however there is significant debug logging in the
executor for state forking output.
This commit is contained in:
Mark Mossberg
2017-06-19 16:50:11 -04:00
committed by GitHub
parent 186fa9c8ca
commit 3bf529c371
+1 -1
View File
@@ -271,7 +271,7 @@ class Manticore(object):
@verbosity.setter
def verbosity(self, setting):
levels = [[],
[('MAIN', logging.INFO), ('EXECUTOR', logging.INFO)],
[('MAIN', logging.INFO), ('EXECUTOR', logging.DEBUG)],
[('PLATFORM', logging.DEBUG)],
[('MEMORY', logging.DEBUG), ('CPU', logging.DEBUG)],
[('REGISTERS', logging.DEBUG)],