diff options
Diffstat (limited to 'miasm/os_dep/linux/syscall.py')
| -rw-r--r-- | miasm/os_dep/linux/syscall.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm/os_dep/linux/syscall.py b/miasm/os_dep/linux/syscall.py index 01b1687c..ca631fc8 100644 --- a/miasm/os_dep/linux/syscall.py +++ b/miasm/os_dep/linux/syscall.py @@ -10,7 +10,7 @@ from miasm.core.utils import pck64 log = logging.getLogger('syscalls') 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.WARNING) |