Skip to content

Commit

Permalink
Loader/utils: less debug
Browse files Browse the repository at this point in the history
  • Loading branch information
serpilliere committed Nov 25, 2019
1 parent 1719d33 commit 2befc53
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions miasm/jitter/loader/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
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):
Expand Down Expand Up @@ -39,9 +39,9 @@ def lib_get_add_base(self, name):
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]
Expand Down

0 comments on commit 2befc53

Please sign in to comment.