src/target/riscv: suppress log when do debug step for 0.11 debug

Change-Id: I495ed57656ae896f98dda391f49f685fed48e504
Signed-off-by: Huaqi Fang <578567190@qq.com>
This commit is contained in:
Huaqi Fang 2024-06-25 19:23:01 +08:00
parent d41e1cf36d
commit c991a6f621
1 changed files with 2 additions and 2 deletions

View File

@ -1871,8 +1871,8 @@ static int handle_halt(struct target *target, bool announce)
/* This is logged to the user so that gdb will show it when a user types /* This is logged to the user so that gdb will show it when a user types
* 'monitor reset init'. At that time gdb appears to have the pc cached * 'monitor reset init'. At that time gdb appears to have the pc cached
* still so if a user manually inspects the pc it will still have the old * still so if a user manually inspects the pc it will still have the old
* value. */ * value. FIXME changed to LOG_DEBUG due to step will output a lot of message */
LOG_USER("halted at 0x%" PRIx64 " due to %s", info->dpc, cause_string[cause]); LOG_DEBUG("halted at 0x%" PRIx64 " due to %s", info->dpc, cause_string[cause]);
return ERROR_OK; return ERROR_OK;
} }