diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2015-02-18 08:49:56 +0100 |
|---|---|---|
| committer | serpilliere <serpilliere@users.noreply.github.com> | 2015-02-18 08:49:56 +0100 |
| commit | 64ec39a8ba0f1e560611ca86b0652528555b18a1 (patch) | |
| tree | 8aa97ab5f10480edd24379ec04a49e480a0f060c /miasm2/analysis/sandbox.py | |
| parent | 862f9f0c4785b85dbb64e2bf497767a68e9fed84 (diff) | |
| parent | 0b327606f4eed41a894f137b38b3575b47ee196f (diff) | |
| download | miasm-64ec39a8ba0f1e560611ca86b0652528555b18a1.tar.gz miasm-64ec39a8ba0f1e560611ca86b0652528555b18a1.zip | |
Merge pull request #73 from p-l-/refactor-api-arguments
Refactor API arguments
Diffstat (limited to '')
| -rw-r--r-- | miasm2/analysis/sandbox.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/miasm2/analysis/sandbox.py b/miasm2/analysis/sandbox.py index 6731929d..310b2ef0 100644 --- a/miasm2/analysis/sandbox.py +++ b/miasm2/analysis/sandbox.py @@ -5,7 +5,7 @@ from miasm2.analysis.machine import Machine from miasm2.os_dep import win_api_x86_32_seh from miasm2.jitter.csts import PAGE_READ, PAGE_WRITE from miasm2.analysis import debugging - +from miasm2.jitter.jitload import log_func class Sandbox(object): """ @@ -56,7 +56,7 @@ class Sandbox(object): self.jitter.jit.log_regs = True if not self.options.quiet_function_calls: - self.machine.log_jit.setLevel(logging.DEBUG) + log_func.setLevel(logging.INFO) if self.options.dumpblocs: self.jitter.jit.log_newbloc = True |