diff options
| author | Sheidan <37596668+Sh3idan@users.noreply.github.com> | 2019-12-20 01:13:37 +0100 |
|---|---|---|
| committer | serpilliere <serpilliere@users.noreply.github.com> | 2019-12-20 01:13:37 +0100 |
| commit | a2d2e3bd87636c2ccca1afecc5c7c20360aa43fa (patch) | |
| tree | a5a389c0451c3e4b173e811c8421e76d96454343 /miasm/arch/mep/jit.py | |
| parent | fa83190c6473daf7294d8143999b057e324a3488 (diff) | |
| download | focaccia-miasm-a2d2e3bd87636c2ccca1afecc5c7c20360aa43fa.tar.gz focaccia-miasm-a2d2e3bd87636c2ccca1afecc5c7c20360aa43fa.zip | |
normalization of log messages (#1112)
* normalization of log messages * -8s in format
Diffstat (limited to 'miasm/arch/mep/jit.py')
| -rw-r--r-- | miasm/arch/mep/jit.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm/arch/mep/jit.py b/miasm/arch/mep/jit.py index 4470b344..08bf73db 100644 --- a/miasm/arch/mep/jit.py +++ b/miasm/arch/mep/jit.py @@ -13,7 +13,7 @@ import logging log = logging.getLogger("jit_mep") hnd = logging.StreamHandler() -hnd.setFormatter(logging.Formatter("[%(levelname)s]: %(message)s")) +hnd.setFormatter(logging.Formatter("[%(levelname)-8s]: %(message)s")) log.addHandler(hnd) log.setLevel(logging.CRITICAL) |