diff options
| author | Mathieu Geli <mathieu.geli@gmail.com> | 2015-06-16 14:26:20 +0200 |
|---|---|---|
| committer | Mathieu Geli <mathieu.geli@gmail.com> | 2015-06-16 14:26:20 +0200 |
| commit | ae3944322330ff5dd5ca6495003f1d0bb611d0f1 (patch) | |
| tree | 939ff5361028c11704d799305cc601d230e3d328 | |
| parent | 5be37436006c6d4578862d879c5ab7bebe8447ff (diff) | |
| download | miasm-ae3944322330ff5dd5ca6495003f1d0bb611d0f1.tar.gz miasm-ae3944322330ff5dd5ca6495003f1d0bb611d0f1.zip | |
Fix forgotten copy/paste from arm arch
| -rw-r--r-- | miasm2/arch/msp430/arch.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/arch/msp430/arch.py b/miasm2/arch/msp430/arch.py index 2cac7260..875915c3 100644 --- a/miasm2/arch/msp430/arch.py +++ b/miasm2/arch/msp430/arch.py @@ -11,7 +11,7 @@ import miasm2.arch.msp430.regs as regs_module from miasm2.arch.msp430.regs import * from miasm2.core.asmbloc import asm_label -log = logging.getLogger("armdis") +log = logging.getLogger("msp430dis") console_handler = logging.StreamHandler() console_handler.setFormatter(logging.Formatter("%(levelname)-5s: %(message)s")) log.addHandler(console_handler) |