about summary refs log tree commit diff stats
path: root/miasm/jitter/loader/utils.py
diff options
context:
space:
mode:
authorFabrice Desclaux <fabrice.desclaux@cea.fr>2019-11-25 21:07:53 +0100
committerFabrice Desclaux <fabrice.desclaux@cea.fr>2019-11-25 21:43:06 +0100
commit2befc53c407747568ca742c007815341ef104c69 (patch)
tree8f39c89d49d8fe5b5e53e32a5e176bdc0a155c3c /miasm/jitter/loader/utils.py
parent1719d332bcc550e926da3f6b86150dc99640d44c (diff)
downloadfocaccia-miasm-2befc53c407747568ca742c007815341ef104c69.tar.gz
focaccia-miasm-2befc53c407747568ca742c007815341ef104c69.zip
Loader/utils: less debug
Diffstat (limited to 'miasm/jitter/loader/utils.py')
-rw-r--r--miasm/jitter/loader/utils.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/miasm/jitter/loader/utils.py b/miasm/jitter/loader/utils.py
index b165960d..fbe38792 100644
--- a/miasm/jitter/loader/utils.py
+++ b/miasm/jitter/loader/utils.py
@@ -8,7 +8,7 @@ log = logging.getLogger('loader_common')
 hnd = logging.StreamHandler()
 hnd.setFormatter(logging.Formatter("[%(levelname)s]: %(message)s"))
 log.addHandler(hnd)
-log.setLevel(logging.DEBUG)
+log.setLevel(logging.INFO)
 
 
 def canon_libname_libfunc(libname, libfunc):
@@ -39,9 +39,9 @@ class libimp(object):
         assert isinstance(name, basestring)
         name = name.lower().strip(' ')
         if not "." in name:
-            log.debug('warning adding .dll to modulename')
+            log.warning('warning adding .dll to modulename')
             name += '.dll'
-            log.debug(name)
+            log.warning(name)
 
         if name in self.name2off:
             ad = self.name2off[name]