From 63fe1e03815060a837172dec42b55461a4782ff9 Mon Sep 17 00:00:00 2001 From: cgsfv Date: Fri, 19 Oct 2018 14:13:52 +0200 Subject: [PATCH] Removing logging statement again --- src/target/riscv/riscv.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/target/riscv/riscv.c b/src/target/riscv/riscv.c index a9e794d3e..30efc8bcd 100644 --- a/src/target/riscv/riscv.c +++ b/src/target/riscv/riscv.c @@ -513,8 +513,6 @@ static int add_trigger(struct target *target, struct trigger *trigger) int riscv_add_breakpoint(struct target *target, struct breakpoint *breakpoint) { if (breakpoint->type == BKPT_SOFT) { - LOG_DEBUG("Adding software breakpoint at 0x%016lx", breakpoint->address); - if (target_read_memory(target, breakpoint->address, breakpoint->length, 1, breakpoint->orig_instr) != ERROR_OK) { LOG_ERROR("Failed to read original instruction at 0x%" TARGET_PRIxADDR,