about summary refs log tree commit diff stats
path: root/miasm2/core/cpu.py
diff options
context:
space:
mode:
authorserpilliere <devnull@localhost>2014-07-10 13:22:11 +0200
committerserpilliere <devnull@localhost>2014-07-10 13:22:11 +0200
commit8bcd58094840b9eafff190ad7fb5e85c258a0fcf (patch)
treea45a74f87fcb1e5a000cde33f62e2737d3091d79 /miasm2/core/cpu.py
parent45dce4db4fe27a3e4a32ddef7caa8aa62d1a8457 (diff)
downloadmiasm-8bcd58094840b9eafff190ad7fb5e85c258a0fcf.tar.gz
miasm-8bcd58094840b9eafff190ad7fb5e85c258a0fcf.zip
Arch: remove debug output
Diffstat (limited to 'miasm2/core/cpu.py')
-rw-r--r--miasm2/core/cpu.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/miasm2/core/cpu.py b/miasm2/core/cpu.py
index 41e5b4f6..2d52eac0 100644
--- a/miasm2/core/cpu.py
+++ b/miasm2/core/cpu.py
@@ -1385,8 +1385,7 @@ class cls_mn(object):
         if len(out) == 0:
             raise ValueError('cannot fromstring %r' % s)
         if len(out) != 1:
-            log.warning('fromstring multiple args ret default')
-            # raise ValueError("cannot parse %r (%d cand)"%(s, len(out)))
+            log.debug('fromstring multiple args ret default')
         c = out[0]
         c_args = out_args[0]