From c991a6f6211eaa7f00e2e1d153df913e86b5dac4 Mon Sep 17 00:00:00 2001 From: Huaqi Fang <578567190@qq.com> Date: Tue, 25 Jun 2024 19:23:01 +0800 Subject: [PATCH] src/target/riscv: suppress log when do debug step for 0.11 debug Change-Id: I495ed57656ae896f98dda391f49f685fed48e504 Signed-off-by: Huaqi Fang <578567190@qq.com> --- src/target/riscv/riscv-011.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/target/riscv/riscv-011.c b/src/target/riscv/riscv-011.c index 1a3f4b12e..6a6950162 100644 --- a/src/target/riscv/riscv-011.c +++ b/src/target/riscv/riscv-011.c @@ -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 * '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 - * value. */ - LOG_USER("halted at 0x%" PRIx64 " due to %s", info->dpc, cause_string[cause]); + * value. FIXME changed to LOG_DEBUG due to step will output a lot of message */ + LOG_DEBUG("halted at 0x%" PRIx64 " due to %s", info->dpc, cause_string[cause]); return ERROR_OK; }